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