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

69 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, buildGoPackage
, fetchFromGitHub
, runCommand
, gpgme
, libgpgerror
, lvm2
, btrfs-progs
, pkg-config
, libselinux
, go-md2man
}:
2017-03-31 19:51:32 +01:00
with stdenv.lib;
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
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" ];
excludedPackages = "integration";
nativeBuildInputs = [ pkg-config (lib.getBin go-md2man) ];
buildInputs = [ gpgme ] ++ lib.optionals stdenv.isLinux [ libgpgerror lvm2 btrfs-progs libselinux ];
buildFlagsArray = ''
-ldflags=
-X github.com/containers/skopeo/vendor/github.com/containers/image/v5/signature.systemDefaultPolicyPath=${defaultPolicyFile}
-X github.com/containers/skopeo/vendor/github.com/containers/image/v5/internal/tmpdir.unixTempDirForBigFiles=/tmp
'';
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}
make install-docs MANINSTALLDIR="$man/share/man"
2018-03-29 17:05:48 +01:00
popd
'';
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;
};
}