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

46 lines
1.2 KiB
Nix
Raw Normal View History

2019-12-27 12:50:27 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, installShellFiles
, buildGoPackage, gpgme, lvm2, btrfs-progs, libseccomp, systemd
2019-02-08 12:38:46 +00:00
, go-md2man
}:
2018-12-18 09:53:40 +00:00
buildGoPackage rec {
pname = "podman";
2020-01-07 21:25:59 +00:00
version = "1.7.0";
2018-12-18 09:53:40 +00:00
src = fetchFromGitHub {
owner = "containers";
repo = "libpod";
rev = "v${version}";
2020-01-07 21:25:59 +00:00
sha256 = "1f1dq9g08mlm9y9d7jbs780nrfc25ln97ca5qifcsyc9bmp4f6r1";
};
2018-12-18 09:53:40 +00:00
goPackagePath = "github.com/containers/libpod";
2019-02-08 12:38:46 +00:00
outputs = [ "bin" "out" "man" ];
2019-12-27 12:50:27 +00:00
nativeBuildInputs = [ pkgconfig go-md2man installShellFiles ];
2018-12-18 09:53:40 +00:00
buildInputs = [ btrfs-progs libseccomp gpgme lvm2 systemd ];
buildPhase = ''
2018-12-18 09:53:40 +00:00
pushd $NIX_BUILD_TOP/go/src/${goPackagePath}
patchShebangs .
2019-02-08 12:38:46 +00:00
make binaries docs
'';
2018-12-18 09:53:40 +00:00
installPhase = ''
2018-12-18 09:53:40 +00:00
install -Dm555 bin/podman $bin/bin/podman
2019-12-27 12:50:27 +00:00
installShellCompletion --bash completions/bash/podman
installShellCompletion --zsh completions/zsh/_podman
2019-02-08 12:38:46 +00:00
MANDIR=$man/share/man make install.man
'';
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;
maintainers = with maintainers; [ vdemeester saschagrunert ];
platforms = platforms.linux;
};
}