3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/skopeo/default.nix

73 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv
, buildGoPackage
, fetchFromGitHub
, runCommand
, gpgme
, libgpgerror
, lvm2
, btrfs-progs
, pkg-config
, libselinux
, go-md2man
2020-04-19 12:22:41 +01:00
, installShellFiles
, makeWrapper
, fuse-overlayfs
}:
2017-03-31 19:51:32 +01:00
let
version = "0.2.0";
src = fetchFromGitHub {
rev = "v${version}";
2018-11-08 09:18:47 +00:00
owner = "containers";
repo = "skopeo";
sha256 = "09zqzrw6f1s6kaknnj3hra3xz4nq6y86vmw5vk8p4f6g7cwakg1x";
};
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";
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 = [ "out" "man" ];
2020-04-17 01:04:38 +01:00
excludedPackages = [ "integration" ];
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 ];
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}
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
'';
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; {
description = "A command line utility for various operations on container images and image repositories";
homepage = "https://github.com/containers/skopeo";
2020-04-03 11:11:27 +01:00
maintainers = with maintainers; [ lewo ] ++ teams.podman.members;
license = licenses.asl20;
};
}