twmn: fix by running pre- and post-install hooks
This package had the same issue as described in issue #15744. The custom installPhase doesn't call pre- and post-install hooks like it should. The solution is also similar (see commit a1facf3).
This commit is contained in:
parent
f85053a021
commit
32ee88e2d1
@ -16,8 +16,12 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
mkdir -p "$out/bin"
|
mkdir -p "$out/bin"
|
||||||
cp bin/* "$out/bin"
|
cp bin/* "$out/bin"
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user