2017-06-28 17:38:05 +01:00
|
|
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub, gpgme, libgpgerror, devicemapper, btrfs-progs, pkgconfig, ostree }:
|
2017-03-31 19:51:32 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2016-11-23 22:47:02 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "skopeo-${version}";
|
2018-01-02 09:40:22 +00:00
|
|
|
version = "0.1.27";
|
2016-11-23 22:47:02 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/projectatomic/skopeo";
|
|
|
|
excludedPackages = "integration";
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gpgme libgpgerror devicemapper btrfs-progs ostree ];
|
2016-11-23 22:47:02 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "projectatomic";
|
|
|
|
repo = "skopeo";
|
2018-01-02 09:40:22 +00:00
|
|
|
sha256 = "1xwwzxjczz8qdk1rf0h78qd3vk9mxxb8yi6f8kfqvcdcsvkajd5g";
|
2016-11-23 22:47:02 +00:00
|
|
|
};
|
|
|
|
|
2017-04-01 23:33:32 +01:00
|
|
|
patches = [
|
|
|
|
./path.patch
|
|
|
|
];
|
|
|
|
|
2017-03-31 19:51:32 +01:00
|
|
|
preBuild = ''
|
|
|
|
export CGO_CFLAGS="-I${getDev gpgme}/include -I${getDev libgpgerror}/include -I${getDev devicemapper}/include -I${getDev btrfs-progs}/include"
|
|
|
|
export CGO_LDFLAGS="-L${getLib gpgme}/lib -L${getLib libgpgerror}/lib -L${getLib devicemapper}/lib"
|
|
|
|
'';
|
|
|
|
|
2017-04-01 23:33:32 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir $bin/etc
|
|
|
|
cp -v ./go/src/github.com/projectatomic/skopeo/default-policy.json $bin/etc/default-policy.json
|
|
|
|
'';
|
|
|
|
|
2016-11-23 22:47:02 +00:00
|
|
|
meta = {
|
|
|
|
description = "A command line utility for various operations on container images and image repositories";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/projectatomic/skopeo;
|
2016-11-23 22:47:02 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ vdemeester ];
|
2016-11-28 02:38:41 +00:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2016-11-23 22:47:02 +00:00
|
|
|
};
|
|
|
|
}
|