commit a27fb7f665f40d94632c301429cef86e39e76b63
parent 6f1cdd116bc172c0bb51485b745dcc4577c061b7
Author: Vincent Demeester <vincent@sbr.pm>
Date: Tue, 25 Sep 2018 16:27:10 +0200
go-containerregistry: only complie crane, gcrane and ko
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/pkgs/go-containerregistry/default.nix b/pkgs/go-containerregistry/default.nix
@@ -14,8 +14,10 @@ buildGoPackage rec {
};
goDeps = ./deps.nix;
+ subPackages = [
+ "cmd/crane" "cmd/gcrane" "cmd/ko"
+ ];
- # TODO: add metadata https://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes
meta = {
description = "Go library and CLIs for working with container registries";
homepage = https://github.com/google/go-containerregistry;