tvl-depot/ops/kontemplate/default.nix
Vincent Ambo 9c5b5600ea refactor(ops): Consistent use of depot.third_party vs. pkgs
In preparation for the solution of b/108, we need to consistently use
`depot.third_party` for packages that are only packed in the TVL depot
and `pkgs` for things that come from nixpkgs.

This commit cleans up a huge chunk of these uses in //ops

Change-Id: I00faeb969eaa70760a26256274925b07998c2351
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2915
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
2021-04-10 12:09:20 +00:00

36 lines
996 B
Nix

# Copyright (C) 2016-2021 Vincent Ambo <mail@tazj.in>
#
# 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.
{ lib, pkgs, ... }:
pkgs.buildGoPackage rec {
name = "kontemplate-${version}";
version = "canon";
src = ./.;
goPackagePath = "github.com/tazjin/kontemplate";
goDeps = ./deps.nix;
buildInputs = [ pkgs.parallel ];
# Enable checks and configure check-phase to include vet:
doCheck = true;
preCheck = ''
for pkg in $(getGoDirs ""); do
buildGoDir vet "$pkg"
done
'';
meta = with lib; {
description = "A resource templating helper for Kubernetes";
homepage = "http://kontemplate.works/";
license = licenses.gpl3;
};
}