2018-12-18 01:53:40 -08:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig
|
|
|
|
, buildGoPackage, gpgme, lvm2, btrfs-progs, libseccomp
|
2018-12-10 04:49:11 -08:00
|
|
|
}:
|
|
|
|
|
2018-12-18 01:53:40 -08:00
|
|
|
buildGoPackage rec {
|
2018-12-10 04:49:11 -08:00
|
|
|
name = "podman-${version}";
|
2018-12-17 06:33:34 -08:00
|
|
|
version = "0.12.1.2";
|
2018-12-18 01:53:40 -08:00
|
|
|
|
2018-12-10 04:49:11 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "containers";
|
|
|
|
repo = "libpod";
|
|
|
|
rev = "v${version}";
|
2018-12-17 06:33:34 -08:00
|
|
|
sha256 = "1gz7vci273bgrihrxbks2zxlb2lsmlj3lisw7s3d54ci0zr7avv3";
|
2018-12-10 04:49:11 -08:00
|
|
|
};
|
2018-12-18 01:53:40 -08:00
|
|
|
|
|
|
|
goPackagePath = "github.com/containers/libpod";
|
|
|
|
|
2018-12-10 04:49:11 -08:00
|
|
|
# Optimizations break compilation of libseccomp c bindings
|
|
|
|
hardeningDisable = [ "fortify" ];
|
2018-12-18 01:53:40 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2018-12-10 04:49:11 -08:00
|
|
|
buildInputs = [
|
2018-12-18 01:53:40 -08:00
|
|
|
btrfs-progs libseccomp gpgme lvm2
|
2018-12-10 04:49:11 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
buildPhase = ''
|
2018-12-18 01:53:40 -08:00
|
|
|
pushd $NIX_BUILD_TOP/go/src/${goPackagePath}
|
2018-12-10 04:49:11 -08:00
|
|
|
patchShebangs .
|
|
|
|
make binaries
|
|
|
|
'';
|
2018-12-18 01:53:40 -08:00
|
|
|
|
2018-12-10 04:49:11 -08:00
|
|
|
installPhase = ''
|
2018-12-18 01:53:40 -08:00
|
|
|
install -Dm555 bin/podman $bin/bin/podman
|
2018-12-10 04:49:11 -08:00
|
|
|
'';
|
|
|
|
|
2018-12-18 01:53:40 -08:00
|
|
|
meta = with stdenv.lib; {
|
2018-12-10 04:49:11 -08: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;
|
|
|
|
};
|
|
|
|
}
|