Merge pull request #29186 from LumiGuide/fix-hol
haskellPackages.hol: Fixed build
This commit is contained in:
commit
d96ad6b635
|
@ -56,6 +56,13 @@ self: super: {
|
||||||
# segfault due to missing return: https://github.com/haskell/c2hs/pull/184
|
# segfault due to missing return: https://github.com/haskell/c2hs/pull/184
|
||||||
c2hs = dontCheck super.c2hs;
|
c2hs = dontCheck super.c2hs;
|
||||||
|
|
||||||
|
# https://github.com/gilith/hol/pull/1
|
||||||
|
hol = appendPatch (doJailbreak super.hol) (pkgs.fetchpatch {
|
||||||
|
name = "hol.patch";
|
||||||
|
url = "https://github.com/gilith/hol/commit/a5171bdcacdbe93c46c9f82ec5a38f2a2b69e632.patch";
|
||||||
|
sha256 = "0xkgbhc4in38hspxgz2wcvk56pjalw43gig7lzkjfhgavwxv3jyj";
|
||||||
|
});
|
||||||
|
|
||||||
# This test keeps being aborted because it runs too quietly for too long
|
# This test keeps being aborted because it runs too quietly for too long
|
||||||
Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2;
|
Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue