nixpkgs/pkgs/development/tools/skopeo/default.nix
Vincent Demeester 6d47cb4131
skopeo: init at 0.1.16
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2016-11-27 21:06:21 -05:00

27 lines
730 B
Nix

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