2020-04-10 00:32:34 +01:00
|
|
|
{ stdenv
|
2020-05-14 08:36:03 +01:00
|
|
|
, buildGoModule
|
2020-04-10 00:32:34 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, runCommand
|
|
|
|
, gpgme
|
|
|
|
, lvm2
|
|
|
|
, btrfs-progs
|
|
|
|
, pkg-config
|
|
|
|
, go-md2man
|
2020-04-19 12:22:41 +01:00
|
|
|
, installShellFiles
|
2020-05-11 18:58:46 +01:00
|
|
|
, makeWrapper
|
|
|
|
, fuse-overlayfs
|
2020-05-14 00:48:53 +01:00
|
|
|
, nixosTests
|
2020-04-10 00:32:34 +01:00
|
|
|
}:
|
2017-03-31 19:51:32 +01:00
|
|
|
|
2020-05-14 13:37:34 +01:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "skopeo";
|
2020-07-29 14:07:56 +01:00
|
|
|
version = "1.1.1";
|
2018-01-31 07:57:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
2018-11-08 09:18:47 +00:00
|
|
|
owner = "containers";
|
2018-01-31 07:57:15 +00:00
|
|
|
repo = "skopeo";
|
2020-07-29 14:07:56 +01:00
|
|
|
sha256 = "0wkpw8fizxjpfypflp7rs1q128dg4hadwzdvn8k41h7f8cbcb39x";
|
2018-01-31 07:57:15 +00:00
|
|
|
};
|
|
|
|
|
2020-04-28 02:50:57 +01:00
|
|
|
outputs = [ "out" "man" ];
|
2016-11-23 22:47:02 +00:00
|
|
|
|
2020-05-14 08:36:03 +01:00
|
|
|
vendorSha256 = null;
|
|
|
|
|
2020-05-11 18:58:46 +01:00
|
|
|
nativeBuildInputs = [ pkg-config go-md2man installShellFiles makeWrapper ];
|
2020-05-13 13:11:34 +01:00
|
|
|
|
2020-04-17 01:04:38 +01:00
|
|
|
buildInputs = [ gpgme ]
|
2020-05-13 13:11:34 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ lvm2 btrfs-progs ];
|
2016-11-23 22:47:02 +00:00
|
|
|
|
2020-05-14 13:37:34 +01:00
|
|
|
buildPhase = ''
|
|
|
|
patchShebangs .
|
|
|
|
make binary-local
|
2017-03-31 19:51:32 +01:00
|
|
|
'';
|
|
|
|
|
2020-05-14 13:37:34 +01:00
|
|
|
installPhase = ''
|
|
|
|
make install-binary PREFIX=$out
|
2019-06-04 05:03:08 +01:00
|
|
|
make install-docs MANINSTALLDIR="$man/share/man"
|
2020-04-19 12:22:41 +01:00
|
|
|
installShellCompletion --bash completions/bash/skopeo
|
2018-03-29 17:05:48 +01:00
|
|
|
'';
|
|
|
|
|
2020-05-11 18:58:46 +01:00
|
|
|
postInstall = stdenv.lib.optionals stdenv.isLinux ''
|
|
|
|
wrapProgram $out/bin/skopeo \
|
|
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ fuse-overlayfs ]}
|
|
|
|
'';
|
|
|
|
|
2020-05-14 00:48:53 +01:00
|
|
|
passthru.tests.docker-tools = nixosTests.docker-tools;
|
|
|
|
|
2020-04-03 11:11:27 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-11-23 22:47:02 +00:00
|
|
|
description = "A command line utility for various operations on container images and image repositories";
|
2020-02-07 23:49:42 +00:00
|
|
|
homepage = "https://github.com/containers/skopeo";
|
2020-04-03 11:11:27 +01:00
|
|
|
maintainers = with maintainers; [ lewo ] ++ teams.podman.members;
|
|
|
|
license = licenses.asl20;
|
2016-11-23 22:47:02 +00:00
|
|
|
};
|
|
|
|
}
|