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

79 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, pkg-config
, installShellFiles
2020-05-14 07:36:01 +00:00
, buildGoModule
, gpgme
, lvm2
, btrfs-progs
2020-05-13 11:37:47 +00:00
, libapparmor
, libseccomp
2020-05-13 11:37:47 +00:00
, libselinux
, systemd
2019-02-08 12:38:46 +00:00
, go-md2man
2020-04-23 02:01:49 +00:00
, nixosTests
}:
2020-05-14 07:36:01 +00:00
buildGoModule rec {
pname = "podman";
version = "3.0.0";
2018-12-18 09:53:40 +00:00
src = fetchFromGitHub {
owner = "containers";
2020-07-16 02:21:46 +00:00
repo = "podman";
rev = "v${version}";
sha256 = "1dsriw2vjzjaddxdhl3wbj2ppnsyi29f4bjwc8lzyz20wfwx4ay4";
};
2018-12-18 09:53:40 +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
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
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
];
buildPhase = ''
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
'';
2018-12-18 09:53:40 +00:00
2021-01-15 05:42:41 +00:00
installPhase = lib.optionalString stdenv.isDarwin ''
2020-06-26 23:58:45 +00:00
mv bin/{podman-remote,podman}
'' + ''
install -Dm555 bin/podman $out/bin/podman
installShellCompletion --bash completions/bash/*
installShellCompletion --fish completions/fish/*
installShellCompletion --zsh completions/zsh/*
MANDIR=$man/share/man make install.man-nobuild
'';
2020-08-23 22:38:10 +00:00
passthru.tests = { inherit (nixosTests) podman; };
2020-04-23 02:01:49 +00: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}/changelog.txt";
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;
};
}