2018-12-18 09:53:40 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig
|
|
|
|
, buildGoPackage, gpgme, lvm2, btrfs-progs, libseccomp
|
2019-02-08 12:38:46 +00:00
|
|
|
, go-md2man
|
2018-12-10 12:49:11 +00:00
|
|
|
}:
|
|
|
|
|
2018-12-18 09:53:40 +00:00
|
|
|
buildGoPackage rec {
|
2018-12-10 12:49:11 +00:00
|
|
|
name = "podman-${version}";
|
2019-04-05 15:56:37 +01:00
|
|
|
version = "1.2.0";
|
2018-12-18 09:53:40 +00:00
|
|
|
|
2018-12-10 12:49:11 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "containers";
|
|
|
|
repo = "libpod";
|
|
|
|
rev = "v${version}";
|
2019-04-05 15:56:37 +01:00
|
|
|
sha256 = "1nlll4q62w3i897wraj18pdi5cc91b8gmp360pzyqzzjdm9ag7v6";
|
2018-12-10 12:49:11 +00:00
|
|
|
};
|
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" ];
|
|
|
|
|
2018-12-10 12:49:11 +00:00
|
|
|
# Optimizations break compilation of libseccomp c bindings
|
|
|
|
hardeningDisable = [ "fortify" ];
|
2019-02-08 12:38:46 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig go-md2man ];
|
2018-12-18 09:53:40 +00:00
|
|
|
|
2018-12-10 12:49:11 +00:00
|
|
|
buildInputs = [
|
2018-12-18 09:53:40 +00:00
|
|
|
btrfs-progs libseccomp gpgme lvm2
|
2018-12-10 12:49:11 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildPhase = ''
|
2018-12-18 09:53:40 +00:00
|
|
|
pushd $NIX_BUILD_TOP/go/src/${goPackagePath}
|
2018-12-10 12:49:11 +00:00
|
|
|
patchShebangs .
|
2019-02-08 12:38:46 +00:00
|
|
|
make binaries docs
|
2018-12-10 12:49:11 +00:00
|
|
|
'';
|
2018-12-18 09:53:40 +00:00
|
|
|
|
2018-12-10 12:49:11 +00:00
|
|
|
installPhase = ''
|
2018-12-18 09:53:40 +00:00
|
|
|
install -Dm555 bin/podman $bin/bin/podman
|
2019-02-08 12:38:46 +00:00
|
|
|
MANDIR=$man/share/man make install.man
|
2018-12-10 12:49:11 +00:00
|
|
|
'';
|
|
|
|
|
2018-12-18 09:53:40 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-12-10 12:49:11 +00:00
|
|
|
homepage = https://podman.io/;
|
|
|
|
description = "A program for managing pods, containers and container images";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ vdemeester ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|