2021-04-21 20:46:01 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-04-15 22:26:09 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, installShellFiles
|
2020-05-14 07:36:01 +00:00
|
|
|
, buildGoModule
|
2020-04-15 22:26:09 +00:00
|
|
|
, gpgme
|
|
|
|
, lvm2
|
|
|
|
, btrfs-progs
|
2020-05-13 11:37:47 +00:00
|
|
|
, libapparmor
|
2020-04-15 22:26:09 +00:00
|
|
|
, libseccomp
|
2020-05-13 11:37:47 +00:00
|
|
|
, libselinux
|
2020-04-15 22:26:09 +00:00
|
|
|
, systemd
|
2019-02-08 12:38:46 +00:00
|
|
|
, go-md2man
|
2020-04-23 02:01:49 +00:00
|
|
|
, nixosTests
|
2018-12-10 12:49:11 +00:00
|
|
|
}:
|
|
|
|
|
2020-05-14 07:36:01 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "podman";
|
2021-04-21 20:46:01 +00:00
|
|
|
version = "3.1.2";
|
2018-12-18 09:53:40 +00:00
|
|
|
|
2018-12-10 12:49:11 +00:00
|
|
|
src = fetchFromGitHub {
|
2020-04-15 22:26:09 +00:00
|
|
|
owner = "containers";
|
2020-07-16 02:21:46 +00:00
|
|
|
repo = "podman";
|
2020-04-15 22:26:09 +00:00
|
|
|
rev = "v${version}";
|
2021-04-21 20:46:01 +00:00
|
|
|
sha256 = "sha256-PS41e7myv5xCSJIeT+SRj4rLVCXpthq7KeHisYoSiOE=";
|
2018-12-10 12:49:11 +00:00
|
|
|
};
|
2018-12-18 09:53:40 +00:00
|
|
|
|
2021-02-13 13:38:00 +00:00
|
|
|
patches = [
|
|
|
|
./remove-unconfigured-runtime-warn.patch
|
|
|
|
];
|
|
|
|
|
2020-05-14 07:36:01 +00:00
|
|
|
vendorSha256 = null;
|
2018-12-18 09:53:40 +00:00
|
|
|
|
2020-08-04 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-04-28 01:50:57 +00:00
|
|
|
outputs = [ "out" "man" ];
|
2019-02-08 12:38:46 +00:00
|
|
|
|
2021-05-26 15:53:52 +00:00
|
|
|
nativeBuildInputs = [ pkg-config go-md2man installShellFiles ];
|
2018-12-18 09:53:40 +00:00
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isLinux [
|
2020-05-13 11:37:47 +00:00
|
|
|
btrfs-progs
|
|
|
|
gpgme
|
|
|
|
libapparmor
|
|
|
|
libseccomp
|
|
|
|
libselinux
|
|
|
|
lvm2
|
|
|
|
systemd
|
|
|
|
];
|
2018-12-10 12:49:11 +00:00
|
|
|
|
|
|
|
buildPhase = ''
|
2021-03-31 06:52:07 +00:00
|
|
|
runHook preBuild
|
2018-12-10 12:49:11 +00:00
|
|
|
patchShebangs .
|
2019-12-13 09:20:00 +00:00
|
|
|
${if stdenv.isDarwin
|
2020-06-26 23:58:45 +00:00
|
|
|
then "make podman-remote"
|
|
|
|
else "make podman"}
|
|
|
|
make docs
|
2021-03-31 06:52:07 +00:00
|
|
|
runHook postBuild
|
2018-12-10 12:49:11 +00:00
|
|
|
'';
|
2018-12-18 09:53:40 +00:00
|
|
|
|
2021-03-31 06:52:07 +00:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
2020-06-26 23:58:45 +00:00
|
|
|
mv bin/{podman-remote,podman}
|
|
|
|
'' + ''
|
2020-04-28 01:50:57 +00:00
|
|
|
install -Dm555 bin/podman $out/bin/podman
|
2021-02-11 04:20:00 +00:00
|
|
|
installShellCompletion --bash completions/bash/*
|
|
|
|
installShellCompletion --fish completions/fish/*
|
|
|
|
installShellCompletion --zsh completions/zsh/*
|
2020-06-20 00:22:33 +00:00
|
|
|
MANDIR=$man/share/man make install.man-nobuild
|
2021-01-28 15:22:47 +00:00
|
|
|
'' + lib.optionalString stdenv.isLinux ''
|
|
|
|
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 06:52:07 +00:00
|
|
|
'' + ''
|
|
|
|
runHook postInstall
|
2018-12-10 12:49:11 +00:00
|
|
|
'';
|
|
|
|
|
2021-05-26 15:56:20 +00: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 08:15:22 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) podman;
|
|
|
|
# related modules
|
|
|
|
inherit (nixosTests) podman-tls-ghostunnel;
|
|
|
|
};
|
2020-04-23 02:01:49 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-12 00:43:26 +00:00
|
|
|
homepage = "https://podman.io/";
|
2018-12-10 12:49:11 +00:00
|
|
|
description = "A program for managing pods, containers and container images";
|
2021-02-11 04:20:00 +00:00
|
|
|
changelog = "https://github.com/containers/podman/blob/v${version}/changelog.txt";
|
2018-12-10 12:49:11 +00:00
|
|
|
license = licenses.asl20;
|
2020-04-03 10:11:25 +00:00
|
|
|
maintainers = with maintainers; [ marsam ] ++ teams.podman.members;
|
2019-12-13 09:20:00 +00:00
|
|
|
platforms = platforms.unix;
|
2018-12-10 12:49:11 +00:00
|
|
|
};
|
|
|
|
}
|