2019-09-04 12:15:40 +02:00
|
|
|
# Copyright (C) 2016-2019 Vincent Ambo <mail@tazj.in>
|
2018-03-09 11:32:17 +01:00
|
|
|
#
|
|
|
|
# This file is part of Kontemplate.
|
|
|
|
#
|
|
|
|
# Kontemplate is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This file is the Nix derivation used to install Kontemplate on
|
|
|
|
# Nix-based systems.
|
|
|
|
|
2019-12-20 23:19:52 +01:00
|
|
|
{ pkgs, ... }:
|
2018-03-09 11:32:17 +01:00
|
|
|
|
2019-12-20 23:19:52 +01:00
|
|
|
with pkgs.third_party; buildGoPackage rec {
|
2018-03-09 11:32:17 +01:00
|
|
|
name = "kontemplate-${version}";
|
|
|
|
version = "master";
|
|
|
|
src = ./.;
|
|
|
|
goPackagePath = "github.com/tazjin/kontemplate";
|
|
|
|
goDeps = ./deps.nix;
|
2019-01-21 11:01:31 +01:00
|
|
|
buildInputs = [ parallel ];
|
2018-03-09 11:32:17 +01:00
|
|
|
|
|
|
|
# Enable checks and configure check-phase to include vet:
|
|
|
|
doCheck = true;
|
|
|
|
preCheck = ''
|
2019-05-01 18:18:10 +02:00
|
|
|
for pkg in $(getGoDirs ""); do
|
|
|
|
buildGoDir vet "$pkg"
|
|
|
|
done
|
2018-03-09 11:32:17 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A resource templating helper for Kubernetes";
|
|
|
|
homepage = "http://kontemplate.works/";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|