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:
Balletie 2016-08-29 20:33:10 +02:00
parent f85053a021
commit 32ee88e2d1
No known key found for this signature in database
GPG Key ID: A728847A61ACE466

View File

@ -16,8 +16,12 @@ stdenv.mkDerivation rec {
'';
installPhase = ''
runHook preInstall
mkdir -p "$out/bin"
cp bin/* "$out/bin"
runHook postInstall
'';
meta = {