Skip to content

Commit

Permalink
skopeo: init at 0.1.16
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
  • Loading branch information
vdemeester authored and grahamc committed Nov 28, 2016
1 parent e394c30 commit 6d47cb4
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/development/tools/skopeo/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 6d47cb4

Please sign in to comment.