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-08-23 07:58:14 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-26 13:12:09 +0000
commit6b342ad576d0fe63c1f13846ff3251ee2449028f (patch)
treed019fd8d36448f8fbbbe596d1e0e8499ff0fd411 /pkgs/applications/audio/fomp
parent04f6ad419b58205319334e66c8f0a4fc5b823dd9 (diff)
fomp: change wafHook to waf.hook
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 8dc86cb8ccf5d..14231a1b2ad45 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, wafHook }:
+{ lib, stdenv, fetchurl, lv2, pkg-config, python3, waf }:
 
 stdenv.mkDerivation rec {
   pname = "fomp";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-xnGijydiO3B7BjSlryFuH1j/OPio9hCYbniq2IXp2W8=";
   };
 
-  nativeBuildInputs = [ pkg-config wafHook ];
+  nativeBuildInputs = [ pkg-config waf.hook ];
   buildInputs = [ lv2 python3 ];
 
   meta = with lib; {