2019-12-27 13:50:27 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, installShellFiles
|
2019-05-17 16:00:40 +02:00
|
|
|
, buildGoPackage, gpgme, lvm2, btrfs-progs, libseccomp, systemd
|
2019-02-08 13:38:46 +01:00
|
|
|
, go-md2man
|
2018-12-10 13:49:11 +01:00
|
|
|
}:
|
|
|
|
|
2018-12-18 10:53:40 +01:00
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "podman";
|
2020-01-07 22:25:59 +01:00
|
|
|
version = "1.7.0";
|
2018-12-18 10:53:40 +01:00
|
|
|
|
2018-12-10 13:49:11 +01:00
|
|
|
src = fetchFromGitHub {
|
2019-05-17 16:00:40 +02:00
|
|
|
owner = "containers";
|
|
|
|
repo = "libpod";
|
|
|
|
rev = "v${version}";
|
2020-01-07 22:25:59 +01:00
|
|
|
sha256 = "1f1dq9g08mlm9y9d7jbs780nrfc25ln97ca5qifcsyc9bmp4f6r1";
|
2018-12-10 13:49:11 +01:00
|
|
|
};
|
2018-12-18 10:53:40 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/containers/libpod";
|
|
|
|
|
2019-02-08 13:38:46 +01:00
|
|
|
outputs = [ "bin" "out" "man" ];
|
|
|
|
|
2019-12-27 13:50:27 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig go-md2man installShellFiles ];
|
2018-12-18 10:53:40 +01:00
|
|
|
|
2019-05-17 16:00:40 +02:00
|
|
|
buildInputs = [ btrfs-progs libseccomp gpgme lvm2 systemd ];
|
2018-12-10 13:49:11 +01:00
|
|
|
|
|
|
|
buildPhase = ''
|
2018-12-18 10:53:40 +01:00
|
|
|
pushd $NIX_BUILD_TOP/go/src/${goPackagePath}
|
2018-12-10 13:49:11 +01:00
|
|
|
patchShebangs .
|
2019-02-08 13:38:46 +01:00
|
|
|
make binaries docs
|
2018-12-10 13:49:11 +01:00
|
|
|
'';
|
2018-12-18 10:53:40 +01:00
|
|
|
|
2018-12-10 13:49:11 +01:00
|
|
|
installPhase = ''
|
2018-12-18 10:53:40 +01:00
|
|
|
install -Dm555 bin/podman $bin/bin/podman
|
2019-12-27 13:50:27 +01:00
|
|
|
installShellCompletion --bash completions/bash/podman
|
|
|
|
installShellCompletion --zsh completions/zsh/_podman
|
2019-02-08 13:38:46 +01:00
|
|
|
MANDIR=$man/share/man make install.man
|
2018-12-10 13:49:11 +01:00
|
|
|
'';
|
|
|
|
|
2018-12-18 10:53:40 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-12-10 13:49:11 +01:00
|
|
|
homepage = https://podman.io/;
|
|
|
|
description = "A program for managing pods, containers and container images";
|
|
|
|
license = licenses.asl20;
|
2019-06-22 16:58:24 +02:00
|
|
|
maintainers = with maintainers; [ vdemeester saschagrunert ];
|
2018-12-10 13:49:11 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|