buildah: add phase hooks
This commit is contained in:
parent
5490b3b224
commit
0745b524b2
1 changed files with 4 additions and 0 deletions
|
@ -45,15 +45,19 @@ buildGoModule rec {
|
|||
];
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
patchShebangs .
|
||||
make bin/buildah GIT_COMMIT="unknown"
|
||||
make -C docs GOMD2MAN="${go-md2man}/bin/go-md2man"
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -Dm755 bin/buildah $out/bin/buildah
|
||||
installShellCompletion --bash contrib/completions/bash/buildah
|
||||
make -C docs install PREFIX="$man"
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue