bitwuzla: fix on aarch64-linux
This commit is contained in:
parent
4c932f9688
commit
71096455f0
1 changed files with 10 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, lib
|
, lib
|
||||||
, python3
|
, python3
|
||||||
, meson
|
, meson
|
||||||
|
@ -26,6 +27,15 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
hash = "sha256-ZEdV4ml1LwrYwscgOcL2gLx/ijPYqRktXMQH/Njh8OI=";
|
hash = "sha256-ZEdV4ml1LwrYwscgOcL2gLx/ijPYqRktXMQH/Njh8OI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# fix parser on aarch64
|
||||||
|
# remove on next release
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/bitwuzla/bitwuzla/commit/4d914aa5ec34076c37749f0cf6dce976ea510386.patch";
|
||||||
|
hash = "sha256-gp+HEamOySjPXCC39tt5DIMdQqEew26a+M15sNdCmTM=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ meson pkg-config git ninja ];
|
nativeBuildInputs = [ meson pkg-config git ninja ];
|
||||||
|
|
Loading…
Reference in a new issue