about summary refs log tree commit diff
path: root/pkgs/applications/audio/fomp
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-09-02 21:24:44 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-09-06 10:41:28 -0300
commitf2f9262b925de33e05e9e4673568b1b4f8300889 (patch)
tree0daf7b8d7f29e7105d3e354ca0c14f7c9fa32062 /pkgs/applications/audio/fomp
parent1abf09fd9c0c8fcb0be9c361fc7db5e9d6fda493 (diff)
treewide: waf.hook -> wafHook
Diffstat (limited to 'pkgs/applications/audio/fomp')
-rw-r--r--pkgs/applications/audio/fomp/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/fomp/default.nix b/pkgs/applications/audio/fomp/default.nix
index 14231a1b2ad45..8dc86cb8ccf5d 100644
--- a/pkgs/applications/audio/fomp/default.nix
+++ b/pkgs/applications/audio/fomp/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, lv2, pkg-config, python3, waf }:
+{ lib, stdenv, fetchurl, lv2, pkg-config, python3, wafHook }:
 
 stdenv.mkDerivation rec {
   pname = "fomp";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-xnGijydiO3B7BjSlryFuH1j/OPio9hCYbniq2IXp2W8=";
   };
 
-  nativeBuildInputs = [ pkg-config waf.hook ];
+  nativeBuildInputs = [ pkg-config wafHook ];
   buildInputs = [ lv2 python3 ];
 
   meta = with lib; {