nixpkgs/pkgs/development/tools/skopeo/default.nix

59 lines
1.6 KiB
Nix
Raw Normal View History

2018-02-08 13:33:58 +00:00
{ stdenv, lib, buildGoPackage, fetchFromGitHub, runCommand
, gpgme, libgpgerror, lvm2, btrfs-progs, pkgconfig, libselinux
2018-03-29 16:05:48 +00:00
, go-md2man }:
2017-03-31 18:51:32 +00:00
with stdenv.lib;
let
version = "0.1.41";
src = fetchFromGitHub {
rev = "v${version}";
2018-11-08 09:18:47 +00:00
owner = "containers";
repo = "skopeo";
sha256 = "0aqw17irj2wn4a8g9hzfm5z5azqq33z6r1dbg1gyn2c8qxy1vfxs";
};
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 16:05:48 +00:00
in
2019-08-13 21:52:01 +00:00
buildGoPackage {
2019-08-13 21:52:01 +00:00
pname = "skopeo";
inherit version;
2018-03-29 16:05:48 +00:00
inherit src goPackagePath;
outputs = [ "bin" "man" "out" ];
excludedPackages = "integration";
2018-03-29 16:05:48 +00:00
nativeBuildInputs = [ pkgconfig (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 22:33:32 +00:00
2017-03-31 18:51:32 +00:00
preBuild = ''
2018-06-13 00:43:09 +00:00
export CGO_CFLAGS="$CFLAGS"
export CGO_LDFLAGS="$LDFLAGS"
2017-03-31 18:51:32 +00:00
'';
2018-03-29 16:05:48 +00:00
postBuild = ''
# depends on buildGoPackage not changing …
pushd ./go/src/${goPackagePath}
make install-docs MANINSTALLDIR="$man/share/man"
2018-03-29 16:05:48 +00:00
popd
'';
2020-04-03 10:11:27 +00: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 10:11:27 +00:00
maintainers = with maintainers; [ lewo ] ++ teams.podman.members;
license = licenses.asl20;
};
}