From a622c5332a4556d86af6ba55adc97759b66ac78e Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 21 Aug 2019 21:29:03 +0200 Subject: [PATCH] haskellPackages.openid: mark as broken broken with openssl 1.1 https://github.com/elliottt/hsopenid/issues/15 --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 0f4157cde28..d920baa0daf 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1285,4 +1285,7 @@ self: super: { # QuickCheck >=2.3 && <2.13, hspec >=2.1 && <2.7 graphviz = dontCheck super.graphviz; + # https://github.com/elliottt/hsopenid/issues/15 + openid = markBroken super.openid; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super