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

73 lines
1.5 KiB
Nix
Raw Normal View History

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