summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-02-12 21:07:11 +0100
committerPeter Simons <simons@cryp.to>2016-02-12 21:14:03 +0100
commit328d9967d350f4542c5befa049c9c2cec4bf8d3f (patch)
tree1d52d9b746039f4500ff80a0e2cf586d67241bdf /pkgs
parente771dc4b06b940c00f53244de5cbd356091d7829 (diff)
downloadnixpkgs-328d9967d350f4542c5befa049c9c2cec4bf8d3f.tar
nixpkgs-328d9967d350f4542c5befa049c9c2cec4bf8d3f.tar.gz
nixpkgs-328d9967d350f4542c5befa049c9c2cec4bf8d3f.tar.bz2
nixpkgs-328d9967d350f4542c5befa049c9c2cec4bf8d3f.tar.lz
nixpkgs-328d9967d350f4542c5befa049c9c2cec4bf8d3f.tar.xz
nixpkgs-328d9967d350f4542c5befa049c9c2cec4bf8d3f.tar.zst
nixpkgs-328d9967d350f4542c5befa049c9c2cec4bf8d3f.zip
haskell-pandoc: drop obsolete override
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 6030ec11afd..18b7dbfc03b 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -605,14 +605,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.