isl: Fix isl 0.20 on riscv due to out of date config.guess
This commit is contained in:
parent
c6382f6544
commit
9472021ccd
1 changed files with 2 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
, patches ? []
|
||||
}:
|
||||
|
||||
{ lib, stdenv, fetchurl, gmp
|
||||
{ lib, stdenv, fetchurl, gmp, autoreconfHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
@ -19,6 +19,7 @@ stdenv.mkDerivation {
|
|||
inherit patches;
|
||||
|
||||
strictDeps = true;
|
||||
nativeBuildInputs = lib.optionals (stdenv.hostPlatform.isRiscV && lib.versionOlder version "0.24") [ autoreconfHook ];
|
||||
buildInputs = [ gmp ];
|
||||
|
||||
inherit configureFlags;
|
||||
|
|
Loading…
Reference in a new issue