mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
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 = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p "$out/bin"
|
||||
cp bin/* "$out/bin"
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
Loading…
Reference in New Issue
Block a user