about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-08-23 08:31:47 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-26 13:12:09 +0000
commit63688a260e7a4379dd554cc95fcbfbff1bd9d3d8 (patch)
tree18b4b99b3e84db883fcdfdac90e4cbd92f39cae6
parent1e9f0794e3e5b68d53e9bc60665fdc4c5925eb72 (diff)
suil: change wafHook to waf.hook
-rw-r--r--pkgs/development/libraries/audio/suil/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/audio/suil/default.nix b/pkgs/development/libraries/audio/suil/default.nix
index 3dc3bb5dacdcf..f037b61e3bcf8 100644
--- a/pkgs/development/libraries/audio/suil/default.nix
+++ b/pkgs/development/libraries/audio/suil/default.nix
@@ -1,5 +1,5 @@
 { stdenv, lib, fetchurl, gtk2, lv2, pkg-config, python3, serd, sord, sratom
-, wafHook
+, waf
 , withQt5 ? true, qt5 ? null
 }:
 
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
     sha256 = "0z4v01pjw4wh65x38w6icn28wdwxz13ayl8hvn4p1g9kmamp1z06";
   };
 
-  nativeBuildInputs = [ pkg-config wafHook python3 ];
+  nativeBuildInputs = [ pkg-config waf.hook python3 ];
   buildInputs = [ gtk2 lv2 serd sord sratom ]
     ++ lib.optionals withQt5 (with qt5; [ qtbase qttools ]);