about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-02-15 20:05:29 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2016-02-15 20:05:29 +0100
commit41698c9efae1302f17b9ecef585979d7ddf7621a (patch)
treea1fd4746388fce0d47d9da9ac0fefc96b523ef4d /pkgs/development/haskell-modules/configuration-common.nix
parent359ba5c971ec8aab1b62cc295e33da8f780b80ce (diff)
parent2029027d8883ab22e3044a71a4a33cc7a0beaf2e (diff)
downloadnixlib-41698c9efae1302f17b9ecef585979d7ddf7621a.tar
nixlib-41698c9efae1302f17b9ecef585979d7ddf7621a.tar.gz
nixlib-41698c9efae1302f17b9ecef585979d7ddf7621a.tar.bz2
nixlib-41698c9efae1302f17b9ecef585979d7ddf7621a.tar.lz
nixlib-41698c9efae1302f17b9ecef585979d7ddf7621a.tar.xz
nixlib-41698c9efae1302f17b9ecef585979d7ddf7621a.tar.zst
nixlib-41698c9efae1302f17b9ecef585979d7ddf7621a.zip
Merge branch 'master' into hardened-stdenv
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix21
1 files changed, 2 insertions, 19 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 4ffaf84f0a4a..f163874f2361 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -611,14 +611,8 @@ self: super: {
   # https://github.com/junjihashimoto/test-sandbox-compose/issues/2
   test-sandbox-compose = dontCheck super.test-sandbox-compose;
 
-  # https://github.com/jgm/pandoc/issues/2190
-  pandoc = overrideCabal super.pandoc (drv: {
-    enableSharedExecutables = false;
-    postInstall = ''            # install man pages
-      mv man $out/
-      find $out/man -type f ! -name "*.[0-9]" -exec rm {} +
-    '';
-  });
+  # https://github.com/jgm/pandoc/issues/2709
+  pandoc = disableSharedExecutables super.pandoc;
 
   # Tests attempt to use NPM to install from the network into
   # /homeless-shelter. Disabled.
@@ -633,14 +627,6 @@ self: super: {
   # https://github.com/haskell/haddock/issues/378
   haddock-library = dontCheck super.haddock-library;
 
-  # Already fixed in upstream darcs repo.
-  xmonad-contrib = overrideCabal super.xmonad-contrib (drv: {
-    postPatch = ''
-      sed -i -e '24iimport Control.Applicative' XMonad/Util/Invisible.hs
-      sed -i -e '22iimport Control.Applicative' XMonad/Hooks/DebugEvents.hs
-    '';
-  });
-
   # https://github.com/anton-k/csound-expression-dynamic/issues/1
   csound-expression-dynamic = dontHaddock super.csound-expression-dynamic;
 
@@ -779,9 +765,6 @@ self: super: {
   elm-server = markBroken super.elm-server;
   elm-yesod = markBroken super.elm-yesod;
 
-  # https://github.com/GaloisInc/HaNS/pull/8
-  hans = appendPatch super.hans ./patches/hans-disable-webserver.patch;
-
   # https://github.com/athanclark/sets/issues/2
   sets = dontCheck super.sets;