Merge pull request from kangaroo/riscv

isl: Fix isl 0.20 on riscv due to out of date config.guess
This commit is contained in:
0x4A6F 2023-04-28 11:26:02 +02:00 committed by GitHub
commit 853ab9b4bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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