2019-12-27 12:50:27 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, installShellFiles
|
2019-05-17 15:00:40 +01:00
|
|
|
, buildGoPackage, gpgme, lvm2, btrfs-progs, libseccomp, systemd
|
2019-02-08 12:38:46 +00:00
|
|
|
, go-md2man
|
2018-12-10 12:49:11 +00:00
|
|
|
}:
|
|
|
|
|
2018-12-18 09:53:40 +00:00
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "podman";
|
2020-02-07 14:25:19 +00:00
|
|
|
version = "1.8.0";
|
2018-12-18 09:53:40 +00:00
|
|
|
|
2018-12-10 12:49:11 +00:00
|
|
|
src = fetchFromGitHub {
|
2019-05-17 15:00:40 +01:00
|
|
|
owner = "containers";
|
|
|
|
repo = "libpod";
|
|
|
|
rev = "v${version}";
|
2020-02-07 14:25:19 +00:00
|
|
|
sha256 = "1rbapks11xg0vgl9m322mijirx0wm6c4yav8aw2y41wsr7qd7db4";
|
2018-12-10 12:49:11 +00:00
|
|
|
};
|
2018-12-18 09:53:40 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/containers/libpod";
|
|
|
|
|
2019-02-08 12:38:46 +00:00
|
|
|
outputs = [ "bin" "out" "man" ];
|
|
|
|
|
2019-12-27 12:50:27 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig go-md2man installShellFiles ];
|
2018-12-18 09:53:40 +00:00
|
|
|
|
2019-12-13 09:20:00 +00:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [ btrfs-progs libseccomp gpgme lvm2 systemd ];
|
2018-12-10 12:49:11 +00:00
|
|
|
|
|
|
|
buildPhase = ''
|
2019-12-13 09:20:00 +00:00
|
|
|
pushd go/src/${goPackagePath}
|
2018-12-10 12:49:11 +00:00
|
|
|
patchShebangs .
|
2019-12-13 09:20:00 +00: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-10 12:49:11 +00:00
|
|
|
'';
|
2018-12-18 09:53:40 +00:00
|
|
|
|
2018-12-10 12:49:11 +00:00
|
|
|
installPhase = ''
|
2018-12-18 09:53:40 +00:00
|
|
|
install -Dm555 bin/podman $bin/bin/podman
|
2019-12-27 12:50:27 +00:00
|
|
|
installShellCompletion --bash completions/bash/podman
|
|
|
|
installShellCompletion --zsh completions/zsh/_podman
|
2019-02-08 12:38:46 +00:00
|
|
|
MANDIR=$man/share/man make install.man
|
2018-12-10 12:49:11 +00:00
|
|
|
'';
|
|
|
|
|
2018-12-18 09:53:40 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-12-10 12:49:11 +00:00
|
|
|
homepage = https://podman.io/;
|
|
|
|
description = "A program for managing pods, containers and container images";
|
|
|
|
license = licenses.asl20;
|
2019-12-13 09:21:00 +00:00
|
|
|
maintainers = with maintainers; [ vdemeester saschagrunert marsam ];
|
2019-12-13 09:20:00 +00:00
|
|
|
platforms = platforms.unix;
|
2018-12-10 12:49:11 +00:00
|
|
|
};
|
|
|
|
}
|