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

59 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, pkg-config
, installShellFiles
, buildGoPackage
, gpgme
, lvm2
, btrfs-progs
, libseccomp
, systemd
2019-02-08 15:38:46 +03:00
, go-md2man
2020-04-23 05:01:49 +03:00
, nixosTests
}:
2018-12-18 12:53:40 +03:00
buildGoPackage rec {
pname = "podman";
version = "1.9.0";
2018-12-18 12:53:40 +03:00
src = fetchFromGitHub {
owner = "containers";
repo = "libpod";
rev = "v${version}";
sha256 = "19y48lpf7pvw5f5pzpknn92rq9xwbrpvi8mj7mc4dby6skqadrk4";
};
2018-12-18 12:53:40 +03:00
goPackagePath = "github.com/containers/libpod";
2019-02-08 15:38:46 +03:00
outputs = [ "bin" "out" "man" ];
nativeBuildInputs = [ pkg-config go-md2man installShellFiles ];
2018-12-18 12:53:40 +03:00
2019-12-13 12:20:00 +03:00
buildInputs = stdenv.lib.optionals stdenv.isLinux [ btrfs-progs libseccomp gpgme lvm2 systemd ];
buildPhase = ''
2019-12-13 12:20:00 +03:00
pushd go/src/${goPackagePath}
patchShebangs .
2019-12-13 12:20:00 +03:00
${if stdenv.isDarwin
then "make CGO_ENABLED=0 BUILDTAGS='remoteclient containers_image_openpgp exclude_graphdriver_devicemapper' varlink_generate all"
else "make binaries docs"}
'';
2018-12-18 12:53:40 +03:00
installPhase = ''
2018-12-18 12:53:40 +03:00
install -Dm555 bin/podman $bin/bin/podman
2019-12-27 15:50:27 +03:00
installShellCompletion --bash completions/bash/podman
installShellCompletion --zsh completions/zsh/_podman
2019-02-08 15:38:46 +03:00
MANDIR=$man/share/man make install.man
'';
2020-04-23 05:01:49 +03:00
passthru.tests.podman = nixosTests.podman;
2018-12-18 12:53:40 +03: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 13:11:25 +03:00
maintainers = with maintainers; [ marsam ] ++ teams.podman.members;
2019-12-13 12:20:00 +03:00
platforms = platforms.unix;
};
}