2c09a378e8
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ stdenv, buildGoPackage, fetchFromGitHub
|
|
, gpgme, libgpgerror, lvm2, btrfs-progs, pkgconfig, ostree, libselinux, libseccomp
|
|
}:
|
|
|
|
buildGoPackage rec {
|
|
pname = "buildah";
|
|
version = "1.11.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containers";
|
|
repo = "buildah";
|
|
rev = "v${version}";
|
|
sha256 = "09bfv2pypd66dnqvrhgcg35fsahi2k0kn5dnnbfqc39g0vfz29r7";
|
|
};
|
|
|
|
outputs = [ "bin" "man" "out" ];
|
|
|
|
goPackagePath = "github.com/containers/buildah";
|
|
excludedPackages = [ "tests" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gpgme libgpgerror lvm2 btrfs-progs ostree libselinux libseccomp ];
|
|
|
|
buildPhase = ''
|
|
pushd go/src/${goPackagePath}
|
|
make GIT_COMMIT="unknown"
|
|
install -Dm755 buildah $bin/bin/buildah
|
|
'';
|
|
|
|
postBuild = ''
|
|
make -C docs install PREFIX="$man"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tool which facilitates building OCI images";
|
|
homepage = "https://github.com/containers/buildah";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ Profpatsch vdemeester saschagrunert ];
|
|
};
|
|
}
|