2018-02-08 13:33:58 +00:00
|
|
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub, runCommand
|
2018-07-17 21:11:16 +01:00
|
|
|
, gpgme, libgpgerror, lvm2, btrfs-progs, pkgconfig, ostree, libselinux
|
2018-03-29 17:05:48 +01:00
|
|
|
, go-md2man }:
|
2017-03-31 19:51:32 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2016-11-23 22:47:02 +00:00
|
|
|
|
2018-01-31 07:57:15 +00:00
|
|
|
let
|
2019-09-12 13:29:34 +01:00
|
|
|
version = "0.1.39";
|
2018-01-31 07:57:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
2018-11-08 09:18:47 +00:00
|
|
|
owner = "containers";
|
2018-01-31 07:57:15 +00:00
|
|
|
repo = "skopeo";
|
2019-09-12 13:29:34 +01:00
|
|
|
sha256 = "1jkxmvh079pd9j4aa39ilmclwafnjs0yqdiigwh8cj7yf97x4vsi";
|
2018-01-31 07:57:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
defaultPolicyFile = runCommand "skopeo-default-policy.json" {} "cp ${src}/default-policy.json $out";
|
|
|
|
|
2018-11-08 09:18:47 +00:00
|
|
|
goPackagePath = "github.com/containers/skopeo";
|
2018-03-29 17:05:48 +01:00
|
|
|
|
2018-01-31 07:57:15 +00:00
|
|
|
in
|
2019-08-13 22:52:01 +01:00
|
|
|
buildGoPackage {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "skopeo";
|
|
|
|
inherit version;
|
2018-03-29 17:05:48 +01:00
|
|
|
inherit src goPackagePath;
|
|
|
|
|
|
|
|
outputs = [ "bin" "man" "out" ];
|
2016-11-23 22:47:02 +00:00
|
|
|
|
|
|
|
excludedPackages = "integration";
|
|
|
|
|
2018-03-29 17:05:48 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig (lib.getBin go-md2man) ];
|
2018-06-13 01:43:09 +01:00
|
|
|
buildInputs = [ gpgme ] ++ lib.optionals stdenv.isLinux [ libgpgerror lvm2 btrfs-progs ostree libselinux ];
|
2016-11-23 22:47:02 +00:00
|
|
|
|
2018-05-24 09:33:18 +01:00
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
2018-11-08 09:18:47 +00: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 09:33:18 +01:00
|
|
|
'';
|
2017-04-01 23:33:32 +01:00
|
|
|
|
2017-03-31 19:51:32 +01:00
|
|
|
preBuild = ''
|
2018-06-13 01:43:09 +01:00
|
|
|
export CGO_CFLAGS="$CFLAGS"
|
|
|
|
export CGO_LDFLAGS="$LDFLAGS"
|
2017-03-31 19:51:32 +01:00
|
|
|
'';
|
|
|
|
|
2018-03-29 17:05:48 +01:00
|
|
|
postBuild = ''
|
|
|
|
# depends on buildGoPackage not changing …
|
|
|
|
pushd ./go/src/${goPackagePath}
|
2019-06-04 05:03:08 +01:00
|
|
|
make install-docs MANINSTALLDIR="$man/share/man"
|
2018-03-29 17:05:48 +01:00
|
|
|
popd
|
|
|
|
'';
|
|
|
|
|
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;
|
2018-03-29 15:18:14 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ vdemeester lewo ];
|
2016-11-28 02:38:41 +00:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2016-11-23 22:47:02 +00:00
|
|
|
};
|
|
|
|
}
|