nixpkgs/pkgs/development/tools/buildah/default.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub
, gpgme, libgpgerror, lvm2, btrfs-progs, pkg-config, libselinux, libseccomp
}:
2018-02-12 11:10:40 +00:00
buildGoPackage rec {
pname = "buildah";
2020-04-09 18:00:00 +00:00
version = "1.14.8";
2018-02-12 11:10:40 +00:00
src = fetchFromGitHub {
owner = "containers";
repo = "buildah";
rev = "v${version}";
2020-04-09 18:00:00 +00:00
sha256 = "187cvb3i5cwm7cwxmzpl2ca7900yb6v6b6cybyz5mnd5ccy5ff1q";
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 = [ pkg-config ];
buildInputs = [ gpgme libgpgerror lvm2 btrfs-progs libselinux libseccomp ];
2018-02-12 11:10:40 +00:00
patches = [ ./disable-go-module-mode.patch ];
buildPhase = ''
pushd go/src/${goPackagePath}
make GIT_COMMIT="unknown"
install -Dm755 buildah $bin/bin/buildah
install -Dm444 contrib/completions/bash/buildah $bin/share/bash-completion/completions/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://buildah.io/";
changelog = "https://github.com/containers/buildah/releases/tag/v${version}";
license = licenses.asl20;
2020-04-03 10:11:26 +00:00
maintainers = with maintainers; [ Profpatsch ] ++ teams.podman.members;
2018-02-12 11:10:40 +00:00
};
}