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

63 lines
1.4 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
}:
2017-03-31 18:51:32 +00:00
buildGoModule rec {
pname = "skopeo";
version = "1.3.0";
src = fetchFromGitHub {
rev = "v${version}";
2018-11-08 09:18:47 +00:00
owner = "containers";
repo = "skopeo";
sha256 = "sha256-ZHEujkl+GUk5WjgDWdbJwOIKuOqJnIpGnvD1SsrHuhI=";
};
outputs = [ "out" "man" ];
2020-05-14 07:36:03 +00:00
vendorSha256 = null;
doCheck = false;
nativeBuildInputs = [ pkg-config go-md2man installShellFiles makeWrapper ];
2020-04-17 00:04:38 +00:00
buildInputs = [ gpgme ]
++ lib.optionals stdenv.isLinux [ lvm2 btrfs-progs ];
buildPhase = ''
2021-03-31 06:52:08 +00:00
runHook preBuild
patchShebangs .
make bin/skopeo 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
install -Dm755 bin/skopeo -t $out/bin
installManPage docs/*.[1-9]
2020-04-19 11:22:41 +00:00
installShellCompletion --bash completions/bash/skopeo
'' + lib.optionalString stdenv.isLinux ''
wrapProgram $out/bin/skopeo \
--prefix PATH : ${lib.makeBinPath [ fuse-overlayfs ]}
2021-03-31 06:52:08 +00:00
'' + ''
runHook postInstall
'';
meta = with lib; {
description = "A command line utility for various operations on container images and image repositories";
homepage = "https://github.com/containers/skopeo";
2020-04-03 10:11:27 +00:00
maintainers = with maintainers; [ lewo ] ++ teams.podman.members;
license = licenses.asl20;
};
}