204f52ce65
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{ stdenv
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, go-md2man
|
|
, installShellFiles
|
|
, pkg-config
|
|
, gpgme
|
|
, lvm2
|
|
, btrfs-progs
|
|
, libapparmor
|
|
, libselinux
|
|
, libseccomp
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "buildah";
|
|
version = "1.18.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containers";
|
|
repo = "buildah";
|
|
rev = "v${version}";
|
|
sha256 = "0kn31y5g7269mjaw5ddfsiaan93s62i8zzxg4xl01dg3dkkadwc4";
|
|
};
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
vendorSha256 = null;
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ go-md2man installShellFiles pkg-config ];
|
|
|
|
buildInputs = [
|
|
btrfs-progs
|
|
gpgme
|
|
libapparmor
|
|
libseccomp
|
|
libselinux
|
|
lvm2
|
|
];
|
|
|
|
buildPhase = ''
|
|
patchShebangs .
|
|
make bin/buildah GIT_COMMIT="unknown"
|
|
make -C docs GOMD2MAN="${go-md2man}/bin/go-md2man"
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -Dm755 bin/buildah $out/bin/buildah
|
|
installShellCompletion --bash contrib/completions/bash/buildah
|
|
make -C docs install PREFIX="$man"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tool which facilitates building OCI images";
|
|
homepage = "https://buildah.io/";
|
|
changelog = "https://github.com/containers/buildah/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ Profpatsch ] ++ teams.podman.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|