Merge pull request #139947 from superherointj/package-go-containerregistry-0.6.0
This commit is contained in:
commit
dd95025e8c
2 changed files with 17 additions and 3 deletions
|
@ -1,23 +1,36 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
let bins = [ "crane" "gcrane" ]; in
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "go-containerregistry";
|
pname = "go-containerregistry";
|
||||||
version = "0.4.1";
|
version = "0.6.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "google";
|
owner = "google";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-3mvGHAPKDUmrQkBKwlxnF6PG0ZpZDqlM9SMkCyC5ytE=";
|
sha256 = "0sk3g1i4w8sh40y1ffa61ap7jsscdvnhvh09k8nznydi465csbmq";
|
||||||
};
|
};
|
||||||
vendorSha256 = null;
|
vendorSha256 = null;
|
||||||
|
|
||||||
subPackages = [ "cmd/crane" "cmd/gcrane" ];
|
subPackages = [ "cmd/crane" "cmd/gcrane" ];
|
||||||
|
|
||||||
|
outputs = [ "out" ] ++ bins;
|
||||||
|
|
||||||
ldflags =
|
ldflags =
|
||||||
let t = "github.com/google/go-containerregistry"; in
|
let t = "github.com/google/go-containerregistry"; in
|
||||||
[ "-s" "-w" "-X ${t}/cmd/crane/cmd.Version=v${version}" "-X ${t}/pkg/v1/remote/transport.Version=${version}" ];
|
[ "-s" "-w" "-X ${t}/cmd/crane/cmd.Version=v${version}" "-X ${t}/pkg/v1/remote/transport.Version=${version}" ];
|
||||||
|
|
||||||
|
postInstall =
|
||||||
|
lib.concatStringsSep "\n" (
|
||||||
|
map (bin: ''
|
||||||
|
mkdir -p ''$${bin}/bin &&
|
||||||
|
mv $out/bin/${bin} ''$${bin}/bin/ &&
|
||||||
|
ln -s ''$${bin}/bin/${bin} $out/bin/
|
||||||
|
'') bins
|
||||||
|
);
|
||||||
|
|
||||||
# NOTE: no tests
|
# NOTE: no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
@ -25,6 +38,6 @@ buildGoModule rec {
|
||||||
description = "Tools for interacting with remote images and registries including crane and gcrane";
|
description = "Tools for interacting with remote images and registries including crane and gcrane";
|
||||||
homepage = "https://github.com/google/go-containerregistry";
|
homepage = "https://github.com/google/go-containerregistry";
|
||||||
license = licenses.apsl20;
|
license = licenses.apsl20;
|
||||||
maintainers = with maintainers; [ yurrriq ];
|
maintainers = with maintainers; [ superherointj yurrriq ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -2885,6 +2885,7 @@ with pkgs;
|
||||||
go-chromecast = callPackage ../applications/video/go-chromecast { };
|
go-chromecast = callPackage ../applications/video/go-chromecast { };
|
||||||
|
|
||||||
go-containerregistry = callPackage ../development/tools/go-containerregistry { };
|
go-containerregistry = callPackage ../development/tools/go-containerregistry { };
|
||||||
|
inherit (go-containerregistry) crane gcrane;
|
||||||
|
|
||||||
go-rice = callPackage ../tools/misc/go.rice {};
|
go-rice = callPackage ../tools/misc/go.rice {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue