blockhash: change wafHook to waf.hook

This commit is contained in:
Anderson Torres 2023-08-23 07:58:18 -03:00
parent a10cefb38a
commit 22482d879b

View file

@ -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;