nixpkgs/pkgs/development/tools/skopeo/default.nix

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

79 lines
1.8 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2020-05-14 10:36:03 +03:00
, buildGoModule
, fetchFromGitHub
, gpgme
, lvm2
, btrfs-progs
, pkg-config
, go-md2man
2020-04-19 14:22:41 +03:00
, installShellFiles
, makeWrapper
, fuse-overlayfs
, dockerTools
, runCommand
, testers
, skopeo
}:
2017-03-31 21:51:32 +03:00
buildGoModule rec {
pname = "skopeo";
2023-11-24 17:17:11 +03:00
version = "1.14.0";
src = fetchFromGitHub {
rev = "v${version}";
2018-11-08 12:18:47 +03:00
owner = "containers";
repo = "skopeo";
2023-11-24 17:17:11 +03:00
hash = "sha256-6PSxYM6u727vHf4FP0ju0TAuqj4R4bxQEdyZHvC4qBA=";
};
outputs = [ "out" "man" ];
vendorHash = null;
2020-05-14 10:36:03 +03:00
doCheck = false;
nativeBuildInputs = [ pkg-config go-md2man installShellFiles makeWrapper ];
2020-04-17 03:04:38 +03:00
buildInputs = [ gpgme ]
++ lib.optionals stdenv.isLinux [ lvm2 btrfs-progs ];
buildPhase = ''
2021-03-31 09:52:08 +03:00
runHook preBuild
patchShebangs .
make bin/skopeo completions docs
2021-03-31 09:52:08 +03:00
runHook postBuild
2017-03-31 21:51:32 +03:00
'';
installPhase = ''
2021-03-31 09:52:08 +03: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.isLinux ''
wrapProgram $out/bin/skopeo \
--prefix PATH : ${lib.makeBinPath [ fuse-overlayfs ]}
2021-03-31 09:52:08 +03: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 = "A command line utility for various operations on container images and image repositories";
homepage = "https://github.com/containers/skopeo";
maintainers = with maintainers; [ lewo developer-guy ] ++ teams.podman.members;
2020-04-03 13:11:27 +03:00
license = licenses.asl20;
};
}