3
0
Fork 0
forked from mirrors/nixpkgs

cri-tools: add license

This commit is contained in:
Markus Kowalewski 2018-08-15 20:25:03 +02:00
parent 8fa1389402
commit 5c395d5095
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -1,4 +1,4 @@
{ buildGoPackage, fetchurl }:
{ buildGoPackage, fetchurl, lib }:
buildGoPackage
{ name = "cri-tools-1.0.0-alpha.0";
@ -10,6 +10,10 @@ buildGoPackage
goPackagePath = "github.com/kubernetes-incubator/cri-tools";
subPackages = [ "cmd/crictl" "cmd/critest" ];
meta = {
license = lib.licenses.asl20;
};
goDeps = ./deps.nix;
}