about summary refs log tree commit diff
path: root/pkgs/tools/graphics/blockhash
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/tools/graphics/blockhash
parent1abf09fd9c0c8fcb0be9c361fc7db5e9d6fda493 (diff)
treewide: waf.hook -> wafHook
Diffstat (limited to 'pkgs/tools/graphics/blockhash')
-rw-r--r--pkgs/tools/graphics/blockhash/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/graphics/blockhash/default.nix b/pkgs/tools/graphics/blockhash/default.nix
index 9d7b613bbe0b1..4f63cf90a3aeb 100644
--- a/pkgs/tools/graphics/blockhash/default.nix
+++ b/pkgs/tools/graphics/blockhash/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, python3, pkg-config, imagemagick, waf }:
+{ lib, stdenv, fetchFromGitHub, python3, pkg-config, imagemagick, wafHook }:
 
 stdenv.mkDerivation rec {
   pname = "blockhash";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "0x3lvhnkb4c3pyq6p81qnnqimz35wpippiac506dgjx3b1848v35";
   };
 
-  nativeBuildInputs = [ python3 pkg-config waf.hook ];
+  nativeBuildInputs = [ python3 pkg-config wafHook ];
   buildInputs = [ imagemagick ];
 
   strictDeps = true;