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 11:51:32 -07:00
with stdenv.lib;
let
version = "0.2.0";
src = fetchFromGitHub {
rev = "v${version}";
2018-11-08 01:18:47 -08:00
owner = "containers";
repo = "skopeo";
sha256 = "09zqzrw6f1s6kaknnj3hra3xz4nq6y86vmw5vk8p4f6g7cwakg1x";
};
defaultPolicyFile = runCommand "skopeo-default-policy.json" {} "cp ${src}/default-policy.json $out";
2018-11-08 01:18:47 -08:00
goPackagePath = "github.com/containers/skopeo";
2018-03-29 09:05:48 -07:00
in
2019-08-13 14:52:01 -07:00
buildGoPackage {
2019-08-13 14:52:01 -07:00
pname = "skopeo";
inherit version;
2018-03-29 09:05:48 -07: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 15:33:32 -07:00
2017-03-31 11:51:32 -07:00
preBuild = ''
2018-06-12 17:43:09 -07:00
export CGO_CFLAGS="$CFLAGS"
export CGO_LDFLAGS="$LDFLAGS"
2017-03-31 11:51:32 -07:00
'';
2018-03-29 09:05:48 -07:00
postBuild = ''
# depends on buildGoPackage not changing …
pushd ./go/src/${goPackagePath}
make install-docs MANINSTALLDIR="$man/share/man"
2018-03-29 09:05:48 -07:00
popd
'';
2020-04-03 03:11:27 -07: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 03:11:27 -07:00
maintainers = with maintainers; [ lewo ] ++ teams.podman.members;
license = licenses.asl20;
};
}