2020-04-16 01:26:09 +03:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, installShellFiles
|
2020-05-14 10:36:01 +03:00
|
|
|
, buildGoModule
|
2020-04-16 01:26:09 +03:00
|
|
|
, gpgme
|
|
|
|
, lvm2
|
|
|
|
, btrfs-progs
|
2020-05-13 14:37:47 +03:00
|
|
|
, libapparmor
|
2020-04-16 01:26:09 +03:00
|
|
|
, libseccomp
|
2020-05-13 14:37:47 +03:00
|
|
|
, libselinux
|
2020-04-16 01:26:09 +03:00
|
|
|
, systemd
|
2019-02-08 15:38:46 +03:00
|
|
|
, go-md2man
|
2020-04-23 05:01:49 +03:00
|
|
|
, nixosTests
|
2018-12-10 15:49:11 +03:00
|
|
|
}:
|
|
|
|
|
2020-05-14 10:36:01 +03:00
|
|
|
buildGoModule rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "podman";
|
2020-09-26 00:08:39 +03:00
|
|
|
version = "2.1.1";
|
2018-12-18 12:53:40 +03:00
|
|
|
|
2018-12-10 15:49:11 +03:00
|
|
|
src = fetchFromGitHub {
|
2020-04-16 01:26:09 +03:00
|
|
|
owner = "containers";
|
2020-07-16 05:21:46 +03:00
|
|
|
repo = "podman";
|
2020-04-16 01:26:09 +03:00
|
|
|
rev = "v${version}";
|
2020-09-26 00:08:39 +03:00
|
|
|
sha256 = "0cy842wlyasxlxnwxkwhwgj148s30kfxnhgxa6ar26fly432aa68";
|
2018-12-10 15:49:11 +03:00
|
|
|
};
|
2018-12-18 12:53:40 +03:00
|
|
|
|
2020-05-14 10:36:01 +03:00
|
|
|
vendorSha256 = null;
|
2018-12-18 12:53:40 +03:00
|
|
|
|
2020-08-04 03:26:27 +03:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-04-28 04:50:57 +03:00
|
|
|
outputs = [ "out" "man" ];
|
2019-02-08 15:38:46 +03:00
|
|
|
|
2020-04-16 01:26:09 +03:00
|
|
|
nativeBuildInputs = [ pkg-config go-md2man installShellFiles ];
|
2018-12-18 12:53:40 +03:00
|
|
|
|
2020-05-13 14:37:47 +03:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [
|
|
|
|
btrfs-progs
|
|
|
|
gpgme
|
|
|
|
libapparmor
|
|
|
|
libseccomp
|
|
|
|
libselinux
|
|
|
|
lvm2
|
|
|
|
systemd
|
|
|
|
];
|
2018-12-10 15:49:11 +03:00
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
patchShebangs .
|
2019-12-13 12:20:00 +03:00
|
|
|
${if stdenv.isDarwin
|
2020-06-27 02:58:45 +03:00
|
|
|
then "make podman-remote"
|
|
|
|
else "make podman"}
|
|
|
|
make docs
|
2018-12-10 15:49:11 +03:00
|
|
|
'';
|
2018-12-18 12:53:40 +03:00
|
|
|
|
2020-06-27 02:58:45 +03:00
|
|
|
installPhase = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
mv bin/{podman-remote,podman}
|
|
|
|
'' + ''
|
2020-04-28 04:50:57 +03:00
|
|
|
install -Dm555 bin/podman $out/bin/podman
|
2019-12-27 15:50:27 +03:00
|
|
|
installShellCompletion --bash completions/bash/podman
|
|
|
|
installShellCompletion --zsh completions/zsh/_podman
|
2020-06-20 03:22:33 +03:00
|
|
|
MANDIR=$man/share/man make install.man-nobuild
|
2018-12-10 15:49:11 +03:00
|
|
|
'';
|
|
|
|
|
2020-08-24 01:38:10 +03:00
|
|
|
passthru.tests = { inherit (nixosTests) podman; };
|
2020-04-23 05:01:49 +03:00
|
|
|
|
2018-12-18 12:53:40 +03:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-12 03:43:26 +03:00
|
|
|
homepage = "https://podman.io/";
|
2018-12-10 15:49:11 +03:00
|
|
|
description = "A program for managing pods, containers and container images";
|
|
|
|
license = licenses.asl20;
|
2020-04-03 13:11:25 +03:00
|
|
|
maintainers = with maintainers; [ marsam ] ++ teams.podman.members;
|
2019-12-13 12:20:00 +03:00
|
|
|
platforms = platforms.unix;
|
2018-12-10 15:49:11 +03:00
|
|
|
};
|
|
|
|
}
|