skopeo: init at 0.1.16
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
parent
e394c305a8
commit
6d47cb4131
26
pkgs/development/tools/skopeo/default.nix
Normal file
26
pkgs/development/tools/skopeo/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub, gpgme }:
|
||||||
|
|
||||||
|
buildGoPackage rec {
|
||||||
|
name = "skopeo-${version}";
|
||||||
|
version = "0.1.16";
|
||||||
|
rev = "v${version}";
|
||||||
|
|
||||||
|
goPackagePath = "github.com/projectatomic/skopeo";
|
||||||
|
excludedPackages = "integration";
|
||||||
|
|
||||||
|
buildInputs = [ gpgme ];
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
inherit rev;
|
||||||
|
owner = "projectatomic";
|
||||||
|
repo = "skopeo";
|
||||||
|
sha256 = "11na7imx6yc1zijb010hx6fjh6v0m3wm5r4sa2nkclm5lkjq259b";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A command line utility for various operations on container images and image repositories";
|
||||||
|
homepage = "https://github.com/projectatomic/skopeo";
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ vdemeester ];
|
||||||
|
license = stdenv.lib.licenses.asl2;
|
||||||
|
};
|
||||||
|
}
|
@ -11457,6 +11457,8 @@ in
|
|||||||
rcshutdown = "/etc/rc.d/rc.shutdown";
|
rcshutdown = "/etc/rc.d/rc.shutdown";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
skopeo = callPackage ../development/tools/skopeo { };
|
||||||
|
|
||||||
smem = callPackage ../os-specific/linux/smem { };
|
smem = callPackage ../os-specific/linux/smem { };
|
||||||
|
|
||||||
statifier = callPackage ../os-specific/linux/statifier { };
|
statifier = callPackage ../os-specific/linux/statifier { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user