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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
2.5 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, installShellFiles
2020-05-14 09:36:01 +02:00
, buildGoModule
, gpgme
, lvm2
, btrfs-progs
2020-05-13 13:37:47 +02:00
, libapparmor
, libseccomp
2020-05-13 13:37:47 +02:00
, libselinux
, systemd
2019-02-08 13:38:46 +01:00
, go-md2man
2020-04-23 04:01:49 +02:00
, nixosTests
}:
2020-05-14 09:36:01 +02:00
buildGoModule rec {
pname = "podman";
version = "4.2.0";
2018-12-18 10:53:40 +01:00
src = fetchFromGitHub {
owner = "containers";
2020-07-16 04:21:46 +02:00
repo = "podman";
rev = "v${version}";
sha256 = "sha256-crlOF8FoLlDulJJ8t8M1kk6JhSZdJU1VtR+G0O6VngM=";
};
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
doCheck = false;
outputs = [ "out" "man" ] ++ lib.optionals stdenv.isLinux [ "rootlessport" ];
2019-02-08 13:38:46 +01: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
];
buildPhase = ''
2021-03-31 08:52:07 +02:00
runHook preBuild
patchShebangs .
${if stdenv.isDarwin then ''
make podman-remote # podman-mac-helper uses FHS paths
'' else ''
make bin/podman bin/rootlessport
''}
2020-06-27 01:58:45 +02:00
make docs
2021-03-31 08:52:07 +02:00
runHook postBuild
'';
2018-12-18 10:53:40 +01:00
2021-03-31 08:52:07 +02:00
installPhase = ''
runHook preInstall
mkdir -p {$out/{bin,etc,lib,share},$man} # ensure paths exist for the wrapper
${if stdenv.isDarwin then ''
mv bin/{darwin/podman,podman}
'' else ''
install -Dm644 cni/87-podman-bridge.conflist -t $out/etc/cni/net.d
install -Dm644 contrib/tmpfile/podman.conf -t $out/lib/tmpfiles.d
for s in contrib/systemd/**/*.in; do
substituteInPlace "$s" --replace "@@PODMAN@@" "podman" # don't use unwrapped binary
done
PREFIX=$out make install.systemd
install -Dm555 bin/rootlessport -t $rootlessport/bin
''}
install -Dm555 bin/podman -t $out/bin
PREFIX=$out make install.completions
MANDIR=$man/share/man make install.man
2021-03-31 08:52:07 +02:00
runHook postInstall
'';
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
'';
passthru.tests = {
inherit (nixosTests) podman;
# related modules
inherit (nixosTests)
podman-tls-ghostunnel
podman-dnsname
;
oci-containers-podman = nixosTests.oci-containers.podman;
};
2020-04-23 04:01:49 +02:00
meta = with lib; {
homepage = "https://podman.io/";
description = "A program for managing pods, containers and container images";
changelog = "https://github.com/containers/podman/blob/v${version}/RELEASE_NOTES.md";
license = licenses.asl20;
2020-04-03 12:11:25 +02:00
maintainers = with maintainers; [ marsam ] ++ teams.podman.members;
};
}