2020-04-10 00:32:34 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildGoPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, runCommand
|
|
|
|
, gpgme
|
|
|
|
, libgpgerror
|
|
|
|
, lvm2
|
|
|
|
, btrfs-progs
|
|
|
|
, pkg-config
|
|
|
|
, libselinux
|
|
|
|
, go-md2man
|
2020-04-19 12:22:41 +01:00
|
|
|
, installShellFiles
|
2020-05-11 18:58:46 +01:00
|
|
|
, makeWrapper
|
|
|
|
, fuse-overlayfs
|
2020-04-10 00:32:34 +01:00
|
|
|
}:
|
2017-03-31 19:51:32 +01:00
|
|
|
|
2018-01-31 07:57:15 +00:00
|
|
|
let
|
2020-04-10 00:32:34 +01:00
|
|
|
version = "0.2.0";
|
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";
|
2020-04-10 00:32:34 +01:00
|
|
|
sha256 = "09zqzrw6f1s6kaknnj3hra3xz4nq6y86vmw5vk8p4f6g7cwakg1x";
|
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
|
|
|
|
2020-04-17 01:04:38 +01:00
|
|
|
vendorPath = "${goPackagePath}/vendor/github.com/containers/image/v5";
|
|
|
|
|
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;
|
|
|
|
|
2020-04-28 02:50:57 +01:00
|
|
|
outputs = [ "out" "man" ];
|
2016-11-23 22:47:02 +00:00
|
|
|
|
2020-04-17 01:04:38 +01:00
|
|
|
excludedPackages = [ "integration" ];
|
2016-11-23 22:47:02 +00:00
|
|
|
|
2020-05-11 18:58:46 +01:00
|
|
|
nativeBuildInputs = [ pkg-config go-md2man installShellFiles makeWrapper ];
|
2020-04-17 01:04:38 +01:00
|
|
|
buildInputs = [ gpgme ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ libgpgerror lvm2 btrfs-progs libselinux ];
|
2016-11-23 22:47:02 +00:00
|
|
|
|
2018-05-24 09:33:18 +01:00
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
2020-04-17 01:04:38 +01:00
|
|
|
-X ${vendorPath}/signature.systemDefaultPolicyPath=${defaultPolicyFile}
|
|
|
|
-X ${vendorPath}/internal/tmpdir.unixTempDirForBigFiles=/tmp
|
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"
|
2020-04-19 12:22:41 +01:00
|
|
|
installShellCompletion --bash completions/bash/skopeo
|
2018-03-29 17:05:48 +01:00
|
|
|
popd
|
|
|
|
'';
|
|
|
|
|
2020-05-11 18:58:46 +01:00
|
|
|
postInstall = stdenv.lib.optionals stdenv.isLinux ''
|
|
|
|
wrapProgram $out/bin/skopeo \
|
|
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ fuse-overlayfs ]}
|
|
|
|
'';
|
|
|
|
|
2020-04-03 11:11:27 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-11-23 22:47:02 +00:00
|
|
|
description = "A command line utility for various operations on container images and image repositories";
|
2020-02-07 23:49:42 +00:00
|
|
|
homepage = "https://github.com/containers/skopeo";
|
2020-04-03 11:11:27 +01:00
|
|
|
maintainers = with maintainers; [ lewo ] ++ teams.podman.members;
|
|
|
|
license = licenses.asl20;
|
2016-11-23 22:47:02 +00:00
|
|
|
};
|
|
|
|
}
|