about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorBas van Dijk <v.dijk.bas@gmail.com>2018-09-18 21:46:06 +0200
committerGitHub <noreply@github.com>2018-09-18 21:46:06 +0200
commit8228c787b4faace67679dc0541bca5f907daebf9 (patch)
tree888a6709a42ee293040deb2a1604e5ee5661d226 /pkgs/development
parent4bc023b5833e32f261f321fc736f745c62aae57c (diff)
parentd6dc56180b5d64cf6e12da10255b03358c661002 (diff)
downloadnixlib-8228c787b4faace67679dc0541bca5f907daebf9.tar
nixlib-8228c787b4faace67679dc0541bca5f907daebf9.tar.gz
nixlib-8228c787b4faace67679dc0541bca5f907daebf9.tar.bz2
nixlib-8228c787b4faace67679dc0541bca5f907daebf9.tar.lz
nixlib-8228c787b4faace67679dc0541bca5f907daebf9.tar.xz
nixlib-8228c787b4faace67679dc0541bca5f907daebf9.tar.zst
nixlib-8228c787b4faace67679dc0541bca5f907daebf9.zip
Merge pull request #46837 from Taneb/JuicyPixels-docs
haskellPackages.JuicyPixels: re-enable Haddock
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 2f89623ecdeb..399bb21f6e62 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -933,9 +933,6 @@ self: super: {
   # Jailbreak "graphviz >=2999.18.1 && <2999.20".
   darcs = overrideCabal super.darcs (drv: { preConfigure = "sed -i -e 's/unix-compat .*,/unix-compat,/' -e 's/fgl .*,/fgl,/' -e 's/graphviz .*,/graphviz,/' darcs.cabal"; });
 
-  # https://github.com/Twinside/Juicy.Pixels/issues/149
-  JuicyPixels = dontHaddock super.JuicyPixels;
-
   # aarch64 and armv7l fixes.
   happy = if (pkgs.stdenv.hostPlatform.isAarch32 || pkgs.stdenv.hostPlatform.isAarch64) then dontCheck super.happy else super.happy; # Similar to https://ghc.haskell.org/trac/ghc/ticket/13062
   hashable = if (pkgs.stdenv.hostPlatform.isAarch32 || pkgs.stdenv.hostPlatform.isAarch64) then dontCheck super.hashable else super.hashable; # https://github.com/tibbe/hashable/issues/95