summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-08-23 07:58:18 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-26 13:12:09 +0000
commit22482d879b48ae45c62ac47797d55549f0296611 (patch)
tree41bbd04a61289cf95cfe1a97cb7e46b7b6561aa1
parenta10cefb38abe5d069484d1fc5c386662276fe59f (diff)
blockhash: change wafHook to waf.hook
-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 4f63cf90a3ae..9d7b613bbe0b 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, wafHook }:
+{ lib, stdenv, fetchFromGitHub, python3, pkg-config, imagemagick, waf }:
stdenv.mkDerivation rec {
pname = "blockhash";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "0x3lvhnkb4c3pyq6p81qnnqimz35wpippiac506dgjx3b1848v35";
};
- nativeBuildInputs = [ python3 pkg-config wafHook ];
+ nativeBuildInputs = [ python3 pkg-config waf.hook ];
buildInputs = [ imagemagick ];
strictDeps = true;