summary refs log tree commit diff
path: root/pkgs/applications/audio/orca-c
diff options
context:
space:
mode:
authornetcrns <jason.wing@gmx.de>2021-05-20 19:49:37 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-20 11:58:57 -0700
commitbd9341ff3981bab23a658df151d38e53eab37a5a (patch)
treef21c1e9bf0cb13692e90d53c250483c8cff2cba6 /pkgs/applications/audio/orca-c
parent3d8c13ccd49732251812f456b056a591c6849c6e (diff)
downloadnixpkgs-bd9341ff3981bab23a658df151d38e53eab37a5a.tar
nixpkgs-bd9341ff3981bab23a658df151d38e53eab37a5a.tar.gz
nixpkgs-bd9341ff3981bab23a658df151d38e53eab37a5a.tar.bz2
nixpkgs-bd9341ff3981bab23a658df151d38e53eab37a5a.tar.lz
nixpkgs-bd9341ff3981bab23a658df151d38e53eab37a5a.tar.xz
nixpkgs-bd9341ff3981bab23a658df151d38e53eab37a5a.tar.zst
nixpkgs-bd9341ff3981bab23a658df151d38e53eab37a5a.zip
orca-c: explicitly call `preInstall` & `postInstall` hooks during `installPhase`
Diffstat (limited to 'pkgs/applications/audio/orca-c')
-rw-r--r--pkgs/applications/audio/orca-c/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/audio/orca-c/default.nix b/pkgs/applications/audio/orca-c/default.nix
index 088e7f97e4e..2c3a8fb1390 100644
--- a/pkgs/applications/audio/orca-c/default.nix
+++ b/pkgs/applications/audio/orca-c/default.nix
@@ -17,8 +17,12 @@ stdenv.mkDerivation {
   '';
 
   installPhase = ''
+    runHook preInstall
+
     mkdir -p $out/bin
     install build/orca $out/bin/orca
+
+    runHook postInstall
   '';
 
   meta = with lib; {