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

44 lines
1 KiB
Nix
Raw Normal View History

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