3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/buildah/default.nix

41 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub
, gpgme, libgpgerror, lvm2, btrfs-progs, pkgconfig, ostree, libselinux, libseccomp
}:
2018-02-12 11:10:40 +00:00
buildGoPackage rec {
pname = "buildah";
version = "1.11.4";
2018-02-12 11:10:40 +00:00
src = fetchFromGitHub {
owner = "containers";
repo = "buildah";
rev = "v${version}";
sha256 = "11jdjrmyafy3fnnp4cdxh3fncjbcy7gggpzwp4n857ij7k2581hl";
2018-02-12 11:10:40 +00:00
};
2018-02-12 11:10:40 +00:00
outputs = [ "bin" "man" "out" ];
goPackagePath = "github.com/containers/buildah";
2018-02-12 11:10:40 +00:00
excludedPackages = [ "tests" ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gpgme libgpgerror lvm2 btrfs-progs ostree libselinux libseccomp ];
2018-02-12 11:10:40 +00:00
buildPhase = ''
pushd go/src/${goPackagePath}
make GIT_COMMIT="unknown"
install -Dm755 buildah $bin/bin/buildah
'';
2018-02-12 11:10:40 +00:00
postBuild = ''
make -C docs install PREFIX="$man"
2018-02-12 11:10:40 +00:00
'';
meta = with stdenv.lib; {
2018-02-12 11:10:40 +00:00
description = "A tool which facilitates building OCI images";
homepage = "https://github.com/containers/buildah";
license = licenses.asl20;
maintainers = with maintainers; [ Profpatsch vdemeester ];
2018-02-12 11:10:40 +00:00
};
}