From 78ddef2cae12989d38a5c9181c932d8a11e782c2 Mon Sep 17 00:00:00 2001 From: Falco Peijnenburg Date: Sun, 10 Sep 2017 11:45:24 +0200 Subject: [PATCH] haskellPackages.hol: Fixed build --- pkgs/development/haskell-modules/configuration-common.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 48b3108d0ed0..2e8c161b4866 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -56,6 +56,13 @@ self: super: { # segfault due to missing return: https://github.com/haskell/c2hs/pull/184 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 Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2;