2020-04-16 01:26:09 +03:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, installShellFiles
|
|
|
|
, buildGoPackage
|
|
|
|
, gpgme
|
|
|
|
, lvm2
|
|
|
|
, btrfs-progs
|
|
|
|
, libseccomp
|
|
|
|
, systemd
|
2019-02-08 15:38:46 +03:00
|
|
|
, go-md2man
|
2018-12-10 15:49:11 +03:00
|
|
|
}:
|
|
|
|
|
2018-12-18 12:53:40 +03:00
|
|
|
buildGoPackage rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "podman";
|
2020-04-16 01:26:09 +03:00
|
|
|
version = "1.9.0";
|
2018-12-18 12:53:40 +03:00
|
|
|
|
2018-12-10 15:49:11 +03:00
|
|
|
src = fetchFromGitHub {
|
2020-04-16 01:26:09 +03:00
|
|
|
owner = "containers";
|
|
|
|
repo = "libpod";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "19y48lpf7pvw5f5pzpknn92rq9xwbrpvi8mj7mc4dby6skqadrk4";
|
2018-12-10 15:49:11 +03:00
|
|
|
};
|
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" ];
|
|
|
|
|
2020-04-16 01:26:09 +03:00
|
|
|
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 ];
|
2018-12-10 15:49:11 +03:00
|
|
|
|
|
|
|
buildPhase = ''
|
2019-12-13 12:20:00 +03:00
|
|
|
pushd go/src/${goPackagePath}
|
2018-12-10 15:49:11 +03:00
|
|
|
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-10 15:49:11 +03:00
|
|
|
'';
|
2018-12-18 12:53:40 +03:00
|
|
|
|
2018-12-10 15:49:11 +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
|
2018-12-10 15:49:11 +03:00
|
|
|
'';
|
|
|
|
|
2018-12-18 12:53:40 +03:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-12 03:43:26 +03:00
|
|
|
homepage = "https://podman.io/";
|
2018-12-10 15:49:11 +03:00
|
|
|
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;
|
2018-12-10 15:49:11 +03:00
|
|
|
};
|
|
|
|
}
|