2020-04-09 16:32:34 -07:00
|
|
|
{ stdenv
|
2020-05-14 00:36:03 -07:00
|
|
|
, buildGoModule
|
2020-04-09 16:32:34 -07:00
|
|
|
, fetchFromGitHub
|
|
|
|
, gpgme
|
|
|
|
, lvm2
|
|
|
|
, btrfs-progs
|
|
|
|
, pkg-config
|
|
|
|
, go-md2man
|
2020-04-19 04:22:41 -07:00
|
|
|
, installShellFiles
|
2020-05-11 10:58:46 -07:00
|
|
|
, makeWrapper
|
|
|
|
, fuse-overlayfs
|
2020-04-09 16:32:34 -07:00
|
|
|
}:
|
2017-03-31 11:51:32 -07:00
|
|
|
|
2020-05-14 05:37:34 -07:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "skopeo";
|
2020-09-25 02:06:34 -07:00
|
|
|
version = "1.2.0";
|
2018-01-30 23:57:15 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
2018-11-08 01:18:47 -08:00
|
|
|
owner = "containers";
|
2018-01-30 23:57:15 -08:00
|
|
|
repo = "skopeo";
|
2020-09-25 02:06:34 -07:00
|
|
|
sha256 = "1v7k3ki10i6082r7zswblyirx6zck674y6bw3plssw4p1l2611rd";
|
2018-01-30 23:57:15 -08:00
|
|
|
};
|
|
|
|
|
2020-04-27 18:50:57 -07:00
|
|
|
outputs = [ "out" "man" ];
|
2016-11-23 14:47:02 -08:00
|
|
|
|
2020-05-14 00:36:03 -07:00
|
|
|
vendorSha256 = null;
|
|
|
|
|
2020-08-03 17:26:27 -07:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-05-11 10:58:46 -07:00
|
|
|
nativeBuildInputs = [ pkg-config go-md2man installShellFiles makeWrapper ];
|
2020-05-13 05:11:34 -07:00
|
|
|
|
2020-04-16 17:04:38 -07:00
|
|
|
buildInputs = [ gpgme ]
|
2020-05-13 05:11:34 -07:00
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ lvm2 btrfs-progs ];
|
2016-11-23 14:47:02 -08:00
|
|
|
|
2020-05-14 05:37:34 -07:00
|
|
|
buildPhase = ''
|
|
|
|
patchShebangs .
|
2020-09-25 02:06:34 -07:00
|
|
|
make bin/skopeo docs
|
2017-03-31 11:51:32 -07:00
|
|
|
'';
|
|
|
|
|
2020-05-14 05:37:34 -07:00
|
|
|
installPhase = ''
|
2020-09-25 02:06:34 -07:00
|
|
|
install -Dm755 bin/skopeo -t $out/bin
|
|
|
|
installManPage docs/*.[1-9]
|
2020-04-19 04:22:41 -07:00
|
|
|
installShellCompletion --bash completions/bash/skopeo
|
2020-09-25 19:35:25 -07:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isLinux ''
|
2020-05-11 10:58:46 -07:00
|
|
|
wrapProgram $out/bin/skopeo \
|
|
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ fuse-overlayfs ]}
|
|
|
|
'';
|
|
|
|
|
2020-04-03 03:11:27 -07:00
|
|
|
meta = with stdenv.lib; {
|
2016-11-23 14:47:02 -08:00
|
|
|
description = "A command line utility for various operations on container images and image repositories";
|
2020-02-07 15:49:42 -08:00
|
|
|
homepage = "https://github.com/containers/skopeo";
|
2020-04-03 03:11:27 -07:00
|
|
|
maintainers = with maintainers; [ lewo ] ++ teams.podman.members;
|
|
|
|
license = licenses.asl20;
|
2016-11-23 14:47:02 -08:00
|
|
|
};
|
|
|
|
}
|