nixpkgs/pkgs/applications/virtualization/podman/default.nix

48 lines
1.4 KiB
Nix
Raw Normal View History

2019-12-27 13:50:27 +01:00
{ stdenv, fetchFromGitHub, pkgconfig, installShellFiles
, buildGoPackage, gpgme, lvm2, btrfs-progs, libseccomp, systemd
2019-02-08 13:38:46 +01:00
, go-md2man
}:
2018-12-18 10:53:40 +01:00
buildGoPackage rec {
pname = "podman";
version = "1.8.2";
2018-12-18 10:53:40 +01:00
src = fetchFromGitHub {
owner = "containers";
repo = "libpod";
rev = "v${version}";
sha256 = "1nxlkqz1ffa3l2yf4rmsxj788dx6xdp8pbi55m9jc9k1vqwc9hxs";
};
2018-12-18 10:53:40 +01:00
goPackagePath = "github.com/containers/libpod";
2019-02-08 13:38:46 +01:00
outputs = [ "bin" "out" "man" ];
2019-12-27 13:50:27 +01:00
nativeBuildInputs = [ pkgconfig go-md2man installShellFiles ];
2018-12-18 10:53:40 +01:00
2019-12-13 10:20:00 +01:00
buildInputs = stdenv.lib.optionals stdenv.isLinux [ btrfs-progs libseccomp gpgme lvm2 systemd ];
buildPhase = ''
2019-12-13 10:20:00 +01:00
pushd go/src/${goPackagePath}
patchShebangs .
2019-12-13 10:20:00 +01:00
${if stdenv.isDarwin
then "make CGO_ENABLED=0 BUILDTAGS='remoteclient containers_image_openpgp exclude_graphdriver_devicemapper' varlink_generate all"
else "make binaries docs"}
'';
2018-12-18 10:53:40 +01:00
installPhase = ''
2018-12-18 10:53:40 +01:00
install -Dm555 bin/podman $bin/bin/podman
2019-12-27 13:50:27 +01:00
installShellCompletion --bash completions/bash/podman
installShellCompletion --zsh completions/zsh/_podman
2019-02-08 13:38:46 +01:00
MANDIR=$man/share/man make install.man
'';
2018-12-18 10:53:40 +01:00
meta = with stdenv.lib; {
homepage = "https://podman.io/";
description = "A program for managing pods, containers and container images";
license = licenses.asl20;
2019-12-13 10:21:00 +01:00
maintainers = with maintainers; [ vdemeester saschagrunert marsam ];
2019-12-13 10:20:00 +01:00
platforms = platforms.unix;
};
}