2021-01-11 19:40:55 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-05-14 07:36:03 +00:00
|
|
|
, buildGoModule
|
2020-04-09 23:32:34 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, gpgme
|
|
|
|
, lvm2
|
|
|
|
, btrfs-progs
|
|
|
|
, pkg-config
|
|
|
|
, go-md2man
|
2020-04-19 11:22:41 +00:00
|
|
|
, installShellFiles
|
2020-05-11 17:58:46 +00:00
|
|
|
, makeWrapper
|
|
|
|
, fuse-overlayfs
|
2022-04-05 06:16:39 +00:00
|
|
|
, dockerTools
|
2023-01-01 02:14:11 +00:00
|
|
|
, runCommand
|
2023-02-16 22:54:04 +00:00
|
|
|
, testers
|
|
|
|
, skopeo
|
2020-04-09 23:32:34 +00:00
|
|
|
}:
|
2017-03-31 18:51:32 +00:00
|
|
|
|
2020-05-14 12:37:34 +00:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "skopeo";
|
2024-08-23 03:27:22 +00:00
|
|
|
version = "1.16.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";
|
2024-08-23 03:27:22 +00:00
|
|
|
hash = "sha256-RsFfShru4ujB+x0hju8Xju43JJk/+PAevIPjjDC5YbQ=";
|
2018-01-31 07:57:15 +00:00
|
|
|
};
|
|
|
|
|
2020-04-28 01:50:57 +00:00
|
|
|
outputs = [ "out" "man" ];
|
2016-11-23 22:47:02 +00:00
|
|
|
|
2023-01-30 05:42:08 +00:00
|
|
|
vendorHash = null;
|
2020-05-14 07:36:03 +00:00
|
|
|
|
2020-08-04 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-05-11 17:58:46 +00:00
|
|
|
nativeBuildInputs = [ pkg-config go-md2man installShellFiles makeWrapper ];
|
2020-05-13 12:11:34 +00:00
|
|
|
|
2020-04-17 00:04:38 +00:00
|
|
|
buildInputs = [ gpgme ]
|
2023-08-28 07:05:45 +00:00
|
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ lvm2 btrfs-progs ];
|
2016-11-23 22:47:02 +00:00
|
|
|
|
2020-05-14 12:37:34 +00:00
|
|
|
buildPhase = ''
|
2021-03-31 06:52:08 +00:00
|
|
|
runHook preBuild
|
2020-05-14 12:37:34 +00:00
|
|
|
patchShebangs .
|
2022-07-13 21:59:49 +00:00
|
|
|
make bin/skopeo completions docs
|
2021-03-31 06:52:08 +00:00
|
|
|
runHook postBuild
|
2017-03-31 18:51:32 +00:00
|
|
|
'';
|
|
|
|
|
2020-05-14 12:37:34 +00:00
|
|
|
installPhase = ''
|
2021-03-31 06:52:08 +00:00
|
|
|
runHook preInstall
|
2023-02-16 22:54:04 +00:00
|
|
|
PREFIX=${placeholder "out"} make install-binary install-completions install-docs
|
2023-01-01 02:14:11 +00:00
|
|
|
install ${passthru.policy}/default-policy.json -Dt $out/etc/containers
|
2021-01-11 19:40:55 +00:00
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isLinux ''
|
2020-05-11 17:58:46 +00:00
|
|
|
wrapProgram $out/bin/skopeo \
|
2021-01-11 19:40:55 +00:00
|
|
|
--prefix PATH : ${lib.makeBinPath [ fuse-overlayfs ]}
|
2021-03-31 06:52:08 +00:00
|
|
|
'' + ''
|
|
|
|
runHook postInstall
|
2020-05-11 17:58:46 +00:00
|
|
|
'';
|
|
|
|
|
2023-01-01 02:14:11 +00:00
|
|
|
passthru = {
|
|
|
|
policy = runCommand "policy" { } ''
|
|
|
|
install ${src}/default-policy.json -Dt $out
|
|
|
|
'';
|
|
|
|
tests = {
|
2023-02-16 22:54:04 +00:00
|
|
|
version = testers.testVersion {
|
|
|
|
package = skopeo;
|
|
|
|
};
|
2023-01-01 02:14:11 +00:00
|
|
|
inherit (dockerTools.examples) testNixFromDockerHub;
|
|
|
|
};
|
2022-04-05 06:16:39 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2023-02-16 22:54:04 +00:00
|
|
|
changelog = "https://github.com/containers/skopeo/releases/tag/${src.rev}";
|
2016-11-23 22:47:02 +00:00
|
|
|
description = "Command line utility for various operations on container images and image repositories";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "skopeo";
|
2020-02-07 23:49:42 +00:00
|
|
|
homepage = "https://github.com/containers/skopeo";
|
2023-04-04 08:20:04 +00:00
|
|
|
maintainers = with maintainers; [ lewo developer-guy ] ++ teams.podman.members;
|
2020-04-03 10:11:27 +00:00
|
|
|
license = licenses.asl20;
|
2016-11-23 22:47:02 +00:00
|
|
|
};
|
|
|
|
}
|