nixpkgs/pkgs/by-name/sk/skopeo/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.8 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2020-05-14 07:36:03 +00:00
, buildGoModule
, fetchFromGitHub
, gpgme
, lvm2
, btrfs-progs
, pkg-config
, go-md2man
2020-04-19 11:22:41 +00:00
, installShellFiles
, makeWrapper
, fuse-overlayfs
, dockerTools
, runCommand
, testers
, skopeo
}:
2017-03-31 18:51:32 +00:00
buildGoModule rec {
pname = "skopeo";
2024-08-23 03:27:22 +00:00
version = "1.16.1";
src = fetchFromGitHub {
rev = "v${version}";
2018-11-08 09:18:47 +00:00
owner = "containers";
repo = "skopeo";
2024-08-23 03:27:22 +00:00
hash = "sha256-RsFfShru4ujB+x0hju8Xju43JJk/+PAevIPjjDC5YbQ=";
};
outputs = [ "out" "man" ];
vendorHash = null;
2020-05-14 07:36:03 +00:00
doCheck = false;
nativeBuildInputs = [ pkg-config go-md2man installShellFiles makeWrapper ];
2020-04-17 00:04:38 +00:00
buildInputs = [ gpgme ]
++ lib.optionals stdenv.hostPlatform.isLinux [ lvm2 btrfs-progs ];
buildPhase = ''
2021-03-31 06:52:08 +00:00
runHook preBuild
patchShebangs .
make bin/skopeo completions docs
2021-03-31 06:52:08 +00:00
runHook postBuild
2017-03-31 18:51:32 +00:00
'';
installPhase = ''
2021-03-31 06:52:08 +00:00
runHook preInstall
PREFIX=${placeholder "out"} make install-binary install-completions install-docs
install ${passthru.policy}/default-policy.json -Dt $out/etc/containers
'' + lib.optionalString stdenv.hostPlatform.isLinux ''
wrapProgram $out/bin/skopeo \
--prefix PATH : ${lib.makeBinPath [ fuse-overlayfs ]}
2021-03-31 06:52:08 +00:00
'' + ''
runHook postInstall
'';
passthru = {
policy = runCommand "policy" { } ''
install ${src}/default-policy.json -Dt $out
'';
tests = {
version = testers.testVersion {
package = skopeo;
};
inherit (dockerTools.examples) testNixFromDockerHub;
};
};
meta = with lib; {
changelog = "https://github.com/containers/skopeo/releases/tag/${src.rev}";
description = "Command line utility for various operations on container images and image repositories";
mainProgram = "skopeo";
homepage = "https://github.com/containers/skopeo";
maintainers = with maintainers; [ lewo developer-guy ] ++ teams.podman.members;
2020-04-03 10:11:27 +00:00
license = licenses.asl20;
};
}