mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
73 lines
1.5 KiB
Nix
73 lines
1.5 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, installShellFiles
|
|
, buildGoModule
|
|
, gpgme
|
|
, lvm2
|
|
, btrfs-progs
|
|
, libapparmor
|
|
, libseccomp
|
|
, libselinux
|
|
, systemd
|
|
, go-md2man
|
|
, nixosTests
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "podman";
|
|
version = "2.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containers";
|
|
repo = "podman";
|
|
rev = "v${version}";
|
|
sha256 = "0cy842wlyasxlxnwxkwhwgj148s30kfxnhgxa6ar26fly432aa68";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
|
|
doCheck = false;
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
nativeBuildInputs = [ pkg-config go-md2man installShellFiles ];
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [
|
|
btrfs-progs
|
|
gpgme
|
|
libapparmor
|
|
libseccomp
|
|
libselinux
|
|
lvm2
|
|
systemd
|
|
];
|
|
|
|
buildPhase = ''
|
|
patchShebangs .
|
|
${if stdenv.isDarwin
|
|
then "make podman-remote"
|
|
else "make podman"}
|
|
make docs
|
|
'';
|
|
|
|
installPhase = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
mv bin/{podman-remote,podman}
|
|
'' + ''
|
|
install -Dm555 bin/podman $out/bin/podman
|
|
installShellCompletion --bash completions/bash/podman
|
|
installShellCompletion --zsh completions/zsh/_podman
|
|
MANDIR=$man/share/man make install.man-nobuild
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) podman; };
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://podman.io/";
|
|
description = "A program for managing pods, containers and container images";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ marsam ] ++ teams.podman.members;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|