skopeo: init at 0.1.16

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2016-11-23 23:47:02 +01:00 committed by Graham Christensen
parent e394c305a8
commit 6d47cb4131
No known key found for this signature in database
GPG Key ID: ACA1C1D120C83D5C
2 changed files with 28 additions and 0 deletions

View 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;
};
}

View File

@ -11457,6 +11457,8 @@ in
rcshutdown = "/etc/rc.d/rc.shutdown";
};
skopeo = callPackage ../development/tools/skopeo { };
smem = callPackage ../os-specific/linux/smem { };
statifier = callPackage ../os-specific/linux/statifier { };