From bd9341ff3981bab23a658df151d38e53eab37a5a Mon Sep 17 00:00:00 2001 From: netcrns Date: Thu, 20 May 2021 19:49:37 +0200 Subject: [PATCH] orca-c: explicitly call `preInstall` & `postInstall` hooks during `installPhase` --- pkgs/applications/audio/orca-c/default.nix | 4 ++++ 1 file changed, 4 insertions(+) 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; {