ganv: change wafHook to waf.hook

This commit is contained in:
Anderson Torres 2023-08-23 08:31:57 -03:00
parent 63688a260e
commit 27022a9a22

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchgit, graphviz, gtk2, gtkmm2, pkg-config, python3, wafHook }:
{ lib, stdenv, fetchgit, graphviz, gtk2, gtkmm2, pkg-config, python3, waf }:
stdenv.mkDerivation rec {
pname = "ganv";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "01znnalirbqxpz62fbw2c14c8xn117jc92xv6dhb3hln92k9x37f";
};
nativeBuildInputs = [ pkg-config wafHook python3 gtk2 ];
nativeBuildInputs = [ pkg-config waf.hook python3 gtk2 ];
buildInputs = [ graphviz gtkmm2 ];
strictDeps = true;