mda-lv2: change wafHook to waf.hook

This commit is contained in:
Anderson Torres 2023-08-23 07:58:15 -03:00
parent a3e2ad556e
commit 34daee396d

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, fftwSinglePrec, lv2, pkg-config, wafHook, python3 }:
{ lib, stdenv, fetchurl, fftwSinglePrec, lv2, pkg-config, waf, python3 }:
stdenv.mkDerivation rec {
pname = "mda-lv2";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-zWYRcCSuBJzzrKg/npBKcCdyJOI6lp9yqcXQEKSYV9s=";
};
nativeBuildInputs = [ pkg-config wafHook python3 ];
nativeBuildInputs = [ pkg-config waf.hook python3 ];
buildInputs = [ fftwSinglePrec lv2 ];
meta = with lib; {