2020-04-19 00:13:49 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildGoPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
|
|
|
, pkg-config
|
|
|
|
, gpgme
|
|
|
|
, libgpgerror
|
|
|
|
, lvm2
|
|
|
|
, btrfs-progs
|
|
|
|
, libselinux
|
|
|
|
, libseccomp
|
2019-08-20 11:44:49 +00:00
|
|
|
}:
|
2018-02-12 11:10:40 +00:00
|
|
|
|
2019-09-12 09:19:02 +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
|
|
|
};
|
2019-05-21 18:26:25 +00:00
|
|
|
|
2020-04-28 01:50:57 +00:00
|
|
|
outputs = [ "out" "man" ];
|
2018-02-12 11:10:40 +00:00
|
|
|
|
2019-09-12 09:19:02 +00:00
|
|
|
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 ];
|
2020-02-08 00:02:14 +00:00
|
|
|
buildInputs = [ gpgme libgpgerror lvm2 btrfs-progs libselinux libseccomp ];
|
2018-02-12 11:10:40 +00:00
|
|
|
|
2019-12-05 02:07:33 +00:00
|
|
|
patches = [ ./disable-go-module-mode.patch ];
|
|
|
|
|
2019-08-20 11:44:49 +00:00
|
|
|
buildPhase = ''
|
|
|
|
pushd go/src/${goPackagePath}
|
|
|
|
make GIT_COMMIT="unknown"
|
2020-04-28 01:50:57 +00:00
|
|
|
install -Dm755 buildah $out/bin/buildah
|
2020-04-19 00:13:49 +00:00
|
|
|
installShellCompletion --bash contrib/completions/bash/buildah
|
2019-08-20 11:44:49 +00:00
|
|
|
'';
|
2018-02-12 11:10:40 +00:00
|
|
|
|
|
|
|
postBuild = ''
|
2019-08-20 11:44:49 +00:00
|
|
|
make -C docs install PREFIX="$man"
|
2018-02-12 11:10:40 +00:00
|
|
|
'';
|
|
|
|
|
2019-09-12 09:19:02 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-02-12 11:10:40 +00:00
|
|
|
description = "A tool which facilitates building OCI images";
|
2020-02-28 19:32:15 +00:00
|
|
|
homepage = "https://buildah.io/";
|
2020-01-15 03:22:22 +00:00
|
|
|
changelog = "https://github.com/containers/buildah/releases/tag/v${version}";
|
2019-09-12 09:19:02 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|