fwts: fixup build by using older make

This commit is contained in:
Vladimír Čunát 2022-12-16 20:04:17 +01:00
parent 3d31187944
commit a68595ff05
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchzip, autoreconfHook, pkg-config, glib, pcre
{ lib, stdenv, fetchzip, autoreconfHook, pkg-config, gnumake42, glib, pcre
, json_c, flex, bison, dtc, pciutils, dmidecode, acpica-tools, libbsd }:
stdenv.mkDerivation rec {
@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
stripRoot = false;
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
# fails with make 4.4
nativeBuildInputs = [ autoreconfHook pkg-config gnumake42 ];
buildInputs = [ glib pcre json_c flex bison dtc pciutils dmidecode acpica-tools libbsd ];
postPatch = ''