mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, installShellFiles
|
|
, buildGoPackage
|
|
, gpgme
|
|
, lvm2
|
|
, btrfs-progs
|
|
, libseccomp
|
|
, systemd
|
|
, go-md2man
|
|
, nixosTests
|
|
}:
|
|
|
|
buildGoPackage rec {
|
|
pname = "podman";
|
|
version = "1.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containers";
|
|
repo = "libpod";
|
|
rev = "v${version}";
|
|
sha256 = "19y48lpf7pvw5f5pzpknn92rq9xwbrpvi8mj7mc4dby6skqadrk4";
|
|
};
|
|
|
|
goPackagePath = "github.com/containers/libpod";
|
|
|
|
outputs = [ "bin" "out" "man" ];
|
|
|
|
nativeBuildInputs = [ pkg-config go-md2man installShellFiles ];
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [ btrfs-progs libseccomp gpgme lvm2 systemd ];
|
|
|
|
buildPhase = ''
|
|
pushd go/src/${goPackagePath}
|
|
patchShebangs .
|
|
${if stdenv.isDarwin
|
|
then "make CGO_ENABLED=0 BUILDTAGS='remoteclient containers_image_openpgp exclude_graphdriver_devicemapper' varlink_generate all"
|
|
else "make binaries docs"}
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -Dm555 bin/podman $bin/bin/podman
|
|
installShellCompletion --bash completions/bash/podman
|
|
installShellCompletion --zsh completions/zsh/_podman
|
|
MANDIR=$man/share/man make install.man
|
|
'';
|
|
|
|
passthru.tests.podman = 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;
|
|
};
|
|
}
|