From b24ba952ece354e3c1259f4c332d0c6c2325aba0 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Thu, 19 Nov 2020 01:52:51 +0100 Subject: [PATCH] haskellPackages.stan: Fix 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 4c61356c88c..23385752594 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1479,4 +1479,11 @@ self: super: { sha256 = "0a8gcq9g8dyyafkvs54mi3fnisff20r0x0qzmhxcp9md61nkf7gq"; }) ]; + + # 2020-11-19: jailbreaking because of pretty-simple bound out of date + # https://github.com/kowainik/stan/issues/408 + # Tests disabled because of: https://github.com/kowainik/stan/issues/409 + stan = doJailbreak (dontCheck super.stan); + # 2020-11-19: Disabling tests with this issue: https://github.com/cchalmers/pcg-random/issues/10 + pcg-random = dontCheck super.pcg-random; } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super