podman: use buildGoPackage

This commit is contained in:
Jörg Thalheim 2018-12-18 10:53:40 +01:00 committed by Vincent Demeester
parent 1a10caf4df
commit 3ca7722757
No known key found for this signature in database
GPG key ID: 083CC6FD6EB699A3

View file

@ -1,45 +1,39 @@
{ stdenv, lib, fetchFromGitHub, removeReferencesTo, pkgconfig
, go, gpgme, lvm2, btrfs-progs, libseccomp
{ stdenv, fetchFromGitHub, pkgconfig
, buildGoPackage, gpgme, lvm2, btrfs-progs, libseccomp
}:
with lib;
stdenv.mkDerivation rec {
buildGoPackage rec {
name = "podman-${version}";
version = "0.12.1.2";
src = fetchFromGitHub {
owner = "containers";
repo = "libpod";
rev = "v${version}";
sha256 = "1gz7vci273bgrihrxbks2zxlb2lsmlj3lisw7s3d54ci0zr7avv3";
};
goPackagePath = "github.com/containers/libpod";
# Optimizations break compilation of libseccomp c bindings
hardeningDisable = [ "fortify" ];
nativeBuildInputs = [ pkgconfig removeReferencesTo ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
go btrfs-progs libseccomp gpgme lvm2
btrfs-progs libseccomp gpgme lvm2
];
buildPhase = ''
pushd $NIX_BUILD_TOP/go/src/${goPackagePath}
patchShebangs .
mkdir -p .gopath/src/github.com/containers
ln -sf $PWD .gopath/src/github.com/containers/libpod
ln -sf $PWD/vendor/github.com/varlink .gopath/src/github.com/varlink
export GOPATH="$PWD/.gopath:$GOPATH"
make binaries
'';
installPhase = ''
install -Dm555 bin/podman $out/bin/podman
'';
preFixup = ''
find $out -type f -exec remove-references-to -t ${go} -t ${stdenv.cc.cc} -t ${stdenv.glibc.dev} '{}' +
install -Dm555 bin/podman $bin/bin/podman
'';
meta = {
meta = with stdenv.lib; {
homepage = https://podman.io/;
description = "A program for managing pods, containers and container images";
license = licenses.asl20;