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

54 lines
1.3 KiB
Nix
Raw Normal View History

2020-04-19 00:13:49 +00:00
{ stdenv
, buildGoPackage
, fetchFromGitHub
, installShellFiles
, pkg-config
, gpgme
, libgpgerror
, lvm2
, btrfs-progs
, 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 {
2020-04-19 00:13:49 +00:00
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" ];
2020-04-19 00:13:49 +00:00
nativeBuildInputs = [ installShellFiles 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
2020-04-19 00:13:49 +00:00
installShellCompletion --bash contrib/completions/bash/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
};
}