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

58 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, ostree, libselinux
2018-03-29 16:05:48 +00:00
, go-md2man }:
2017-03-31 18:51:32 +00:00
with stdenv.lib;
let
2018-07-30 08:10:26 +00:00
version = "0.1.31";
src = fetchFromGitHub {
rev = "v${version}";
owner = "projectatomic";
repo = "skopeo";
2018-07-30 08:10:26 +00:00
sha256 = "02z46wxhms8yph03ksl7i4hbqy15v3y1r43js9dxn0a45vxkm7lb";
};
defaultPolicyFile = runCommand "skopeo-default-policy.json" {} "cp ${src}/default-policy.json $out";
2018-03-29 16:05:48 +00:00
goPackagePath = "github.com/projectatomic/skopeo";
in
buildGoPackage rec {
name = "skopeo-${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) ];
2018-06-13 00:43:09 +00:00
buildInputs = [ gpgme ] ++ lib.optionals stdenv.isLinux [ libgpgerror lvm2 btrfs-progs ostree libselinux ];
buildFlagsArray = ''
-ldflags=
-X github.com/projectatomic/skopeo/vendor/github.com/containers/image/signature.systemDefaultPolicyPath=${defaultPolicyFile}
-X github.com/projectatomic/skopeo/vendor/github.com/containers/image/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"
popd
'';
meta = {
description = "A command line utility for various operations on container images and image repositories";
homepage = https://github.com/projectatomic/skopeo;
maintainers = with stdenv.lib.maintainers; [ vdemeester lewo ];
license = stdenv.lib.licenses.asl20;
};
}