2018-02-08 14:33:58 +01:00
|
|
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub, runCommand
|
2018-07-17 22:11:16 +02:00
|
|
|
, gpgme, libgpgerror, lvm2, btrfs-progs, pkgconfig, ostree, libselinux
|
2018-03-29 18:05:48 +02:00
|
|
|
, go-md2man }:
|
2017-03-31 20:51:32 +02:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2016-11-23 23:47:02 +01:00
|
|
|
|
2018-01-31 08:57:15 +01:00
|
|
|
let
|
2019-06-17 19:06:13 +02:00
|
|
|
version = "0.1.37";
|
2018-01-31 08:57:15 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
2018-11-08 10:18:47 +01:00
|
|
|
owner = "containers";
|
2018-01-31 08:57:15 +01:00
|
|
|
repo = "skopeo";
|
2019-06-17 19:06:13 +02:00
|
|
|
sha256 = "1ly5yq3aj4ciqn6hbhvxqp1im81pbas9smdhbbks7iwjvh944d62";
|
2018-01-31 08:57:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
defaultPolicyFile = runCommand "skopeo-default-policy.json" {} "cp ${src}/default-policy.json $out";
|
|
|
|
|
2018-11-08 10:18:47 +01:00
|
|
|
goPackagePath = "github.com/containers/skopeo";
|
2018-03-29 18:05:48 +02:00
|
|
|
|
2018-01-31 08:57:15 +01:00
|
|
|
in
|
2019-08-13 23:52:01 +02:00
|
|
|
buildGoPackage {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "skopeo";
|
|
|
|
inherit version;
|
2018-03-29 18:05:48 +02:00
|
|
|
inherit src goPackagePath;
|
|
|
|
|
|
|
|
outputs = [ "bin" "man" "out" ];
|
2016-11-23 23:47:02 +01:00
|
|
|
|
|
|
|
excludedPackages = "integration";
|
|
|
|
|
2018-03-29 18:05:48 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig (lib.getBin go-md2man) ];
|
2018-06-13 02:43:09 +02:00
|
|
|
buildInputs = [ gpgme ] ++ lib.optionals stdenv.isLinux [ libgpgerror lvm2 btrfs-progs ostree libselinux ];
|
2016-11-23 23:47:02 +01:00
|
|
|
|
2018-05-24 10:33:18 +02:00
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
2018-11-08 10:18:47 +01:00
|
|
|
-X github.com/containers/skopeo/vendor/github.com/containers/image/signature.systemDefaultPolicyPath=${defaultPolicyFile}
|
|
|
|
-X github.com/containers/skopeo/vendor/github.com/containers/image/internal/tmpdir.unixTempDirForBigFiles=/tmp
|
2018-05-24 10:33:18 +02:00
|
|
|
'';
|
2017-04-02 00:33:32 +02:00
|
|
|
|
2017-03-31 20:51:32 +02:00
|
|
|
preBuild = ''
|
2018-06-13 02:43:09 +02:00
|
|
|
export CGO_CFLAGS="$CFLAGS"
|
|
|
|
export CGO_LDFLAGS="$LDFLAGS"
|
2017-03-31 20:51:32 +02:00
|
|
|
'';
|
|
|
|
|
2018-03-29 18:05:48 +02:00
|
|
|
postBuild = ''
|
|
|
|
# depends on buildGoPackage not changing …
|
|
|
|
pushd ./go/src/${goPackagePath}
|
2019-06-04 06:03:08 +02:00
|
|
|
make install-docs MANINSTALLDIR="$man/share/man"
|
2018-03-29 18:05:48 +02:00
|
|
|
popd
|
|
|
|
'';
|
|
|
|
|
2016-11-23 23:47:02 +01:00
|
|
|
meta = {
|
|
|
|
description = "A command line utility for various operations on container images and image repositories";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/projectatomic/skopeo;
|
2018-03-29 16:18:14 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ vdemeester lewo ];
|
2016-11-28 03:38:41 +01:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2016-11-23 23:47:02 +01:00
|
|
|
};
|
|
|
|
}
|