2021-04-21 22:46:01 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-04-16 00:26:09 +02:00
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, installShellFiles
|
2020-05-14 09:36:01 +02:00
|
|
|
, buildGoModule
|
2020-04-16 00:26:09 +02:00
|
|
|
, gpgme
|
|
|
|
, lvm2
|
|
|
|
, btrfs-progs
|
2020-05-13 13:37:47 +02:00
|
|
|
, libapparmor
|
2020-04-16 00:26:09 +02:00
|
|
|
, libseccomp
|
2020-05-13 13:37:47 +02:00
|
|
|
, libselinux
|
2020-04-16 00:26:09 +02:00
|
|
|
, systemd
|
2019-02-08 13:38:46 +01:00
|
|
|
, go-md2man
|
2020-04-23 04:01:49 +02:00
|
|
|
, nixosTests
|
2018-12-10 13:49:11 +01:00
|
|
|
}:
|
|
|
|
|
2020-05-14 09:36:01 +02:00
|
|
|
buildGoModule rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "podman";
|
2021-10-20 21:40:24 +02:00
|
|
|
version = "3.4.1";
|
2018-12-18 10:53:40 +01:00
|
|
|
|
2018-12-10 13:49:11 +01:00
|
|
|
src = fetchFromGitHub {
|
2020-04-16 00:26:09 +02:00
|
|
|
owner = "containers";
|
2020-07-16 04:21:46 +02:00
|
|
|
repo = "podman";
|
2020-04-16 00:26:09 +02:00
|
|
|
rev = "v${version}";
|
2021-10-20 21:40:24 +02:00
|
|
|
sha256 = "sha256-+6ALwm1Hc76rYwlQN0r8zX2n+nxBk5iW4AHWBlzAIOc=";
|
2018-12-10 13:49:11 +01:00
|
|
|
};
|
2018-12-18 10:53:40 +01:00
|
|
|
|
2020-05-14 09:36:01 +02:00
|
|
|
vendorSha256 = null;
|
2018-12-18 10:53:40 +01:00
|
|
|
|
2020-08-04 02:26:27 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-04-28 03:50:57 +02:00
|
|
|
outputs = [ "out" "man" ];
|
2019-02-08 13:38:46 +01:00
|
|
|
|
2021-05-26 17:53:52 +02:00
|
|
|
nativeBuildInputs = [ pkg-config go-md2man installShellFiles ];
|
2018-12-18 10:53:40 +01:00
|
|
|
|
2021-01-15 06:42:41 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isLinux [
|
2020-05-13 13:37:47 +02:00
|
|
|
btrfs-progs
|
|
|
|
gpgme
|
|
|
|
libapparmor
|
|
|
|
libseccomp
|
|
|
|
libselinux
|
|
|
|
lvm2
|
|
|
|
systemd
|
|
|
|
];
|
2018-12-10 13:49:11 +01:00
|
|
|
|
|
|
|
buildPhase = ''
|
2021-03-31 08:52:07 +02:00
|
|
|
runHook preBuild
|
2018-12-10 13:49:11 +01:00
|
|
|
patchShebangs .
|
2019-12-13 10:20:00 +01:00
|
|
|
${if stdenv.isDarwin
|
2020-06-27 01:58:45 +02:00
|
|
|
then "make podman-remote"
|
|
|
|
else "make podman"}
|
|
|
|
make docs
|
2021-03-31 08:52:07 +02:00
|
|
|
runHook postBuild
|
2018-12-10 13:49:11 +01:00
|
|
|
'';
|
2018-12-18 10:53:40 +01:00
|
|
|
|
2021-03-31 08:52:07 +02:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
2021-06-04 01:10:09 +02:00
|
|
|
mv bin/{darwin/podman,podman}
|
2020-06-27 01:58:45 +02:00
|
|
|
'' + ''
|
2020-04-28 03:50:57 +02:00
|
|
|
install -Dm555 bin/podman $out/bin/podman
|
2021-02-11 05:20:00 +01:00
|
|
|
installShellCompletion --bash completions/bash/*
|
|
|
|
installShellCompletion --fish completions/fish/*
|
|
|
|
installShellCompletion --zsh completions/zsh/*
|
2020-06-20 02:22:33 +02:00
|
|
|
MANDIR=$man/share/man make install.man-nobuild
|
2021-05-30 03:14:03 +02:00
|
|
|
install -Dm644 cni/87-podman-bridge.conflist -t $out/etc/cni/net.d
|
2021-01-28 16:22:47 +01:00
|
|
|
install -Dm644 contrib/tmpfile/podman.conf -t $out/lib/tmpfiles.d
|
|
|
|
install -Dm644 contrib/systemd/system/podman.{socket,service} -t $out/lib/systemd/system
|
2021-03-31 08:52:07 +02:00
|
|
|
runHook postInstall
|
2018-12-10 13:49:11 +01:00
|
|
|
'';
|
|
|
|
|
2021-05-26 17:56:20 +02:00
|
|
|
postFixup = lib.optionalString stdenv.isLinux ''
|
|
|
|
RPATH=$(patchelf --print-rpath $out/bin/podman)
|
|
|
|
patchelf --set-rpath "${lib.makeLibraryPath [ systemd ]}":$RPATH $out/bin/podman
|
|
|
|
'';
|
|
|
|
|
2021-05-25 10:15:22 +02:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) podman;
|
|
|
|
# related modules
|
2021-05-31 09:40:04 +02:00
|
|
|
inherit (nixosTests)
|
|
|
|
podman-tls-ghostunnel
|
|
|
|
podman-dnsname
|
|
|
|
;
|
2021-05-25 10:15:22 +02:00
|
|
|
};
|
2020-04-23 04:01:49 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-03-12 01:43:26 +01:00
|
|
|
homepage = "https://podman.io/";
|
2018-12-10 13:49:11 +01:00
|
|
|
description = "A program for managing pods, containers and container images";
|
2021-02-11 05:20:00 +01:00
|
|
|
changelog = "https://github.com/containers/podman/blob/v${version}/changelog.txt";
|
2018-12-10 13:49:11 +01:00
|
|
|
license = licenses.asl20;
|
2020-04-03 12:11:25 +02:00
|
|
|
maintainers = with maintainers; [ marsam ] ++ teams.podman.members;
|
2019-12-13 10:20:00 +01:00
|
|
|
platforms = platforms.unix;
|
2018-12-10 13:49:11 +01:00
|
|
|
};
|
|
|
|
}
|