about summary refs log tree commit diff
path: root/pkgs/development/tools/pandoc
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2020-06-08 13:07:30 +0200
committerProfpatsch <mail@profpatsch.de>2020-06-12 13:21:34 +0200
commit91340aeea87aa25f8265b0a69af88d7d36fcf04f (patch)
treea7a462be0348effa5722a138fc862a9cd6c58f38 /pkgs/development/tools/pandoc
parent7380ad739df8ef490ee0b7525f1297835ad513d8 (diff)
gitit: init at 0.13.0.0
This was broken in `haskellPackages` for a long time, but it’s back!

Time to give it a place in the toplevel and a prope) treatment:

* Semi-static binary
* Remove all references to `Paths_` modules of dependencies
* gitit tries very hard to have a runtime dependency on GHC, disable
  that by default.

Also added myself as a maintainer, let’s try to keep this working from
now on.

Fixes https://github.com/NixOS/nixpkgs/issues/32377
Diffstat (limited to 'pkgs/development/tools/pandoc')
-rw-r--r--pkgs/development/tools/pandoc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/pandoc/default.nix b/pkgs/development/tools/pandoc/default.nix
index ce7132b0007b7..0bf9ce71e481f 100644
--- a/pkgs/development/tools/pandoc/default.nix
+++ b/pkgs/development/tools/pandoc/default.nix
@@ -10,8 +10,8 @@ in
     buildTools = (drv.buildTools or []) ++ [ removeReferencesTo ];
   })).overrideAttrs (drv: {
 
-    # These libraries are still referenced, because pandoc references
-    # their `Paths_*` module for figuring out their version.
+    # These libraries are still referenced, because they generate
+    # a `Paths_*` module for figuring out their version.
     # The `Paths_*` module is generated by Cabal, and contains the
     # version, but also paths to e.g. the data directories, which
     # lead to a transitive runtime dependency on the whole GHC distribution.