summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc
diff options
context:
space:
mode:
authorLaverne Schrock <laverne@schrock.email>2016-12-25 07:57:58 -0600
committerPeter Simons <simons@cryp.to>2016-12-28 17:30:16 +0100
commit1a78981b2f5141bac2f8d0255998b9465b0043a9 (patch)
tree607c9bdd108cb7229becdcf758bc80e67cb750b6 /pkgs/development/compilers/ghc
parentca41610e8aef4a958f6a24f9fba2b125b5442338 (diff)
downloadnixlib-1a78981b2f5141bac2f8d0255998b9465b0043a9.tar
nixlib-1a78981b2f5141bac2f8d0255998b9465b0043a9.tar.gz
nixlib-1a78981b2f5141bac2f8d0255998b9465b0043a9.tar.bz2
nixlib-1a78981b2f5141bac2f8d0255998b9465b0043a9.tar.lz
nixlib-1a78981b2f5141bac2f8d0255998b9465b0043a9.tar.xz
nixlib-1a78981b2f5141bac2f8d0255998b9465b0043a9.tar.zst
nixlib-1a78981b2f5141bac2f8d0255998b9465b0043a9.zip
ghc-8.0.1: switch to sphinx for documentation
Fixes #20281

"Since GHC 8.0, the User’s Guide is authored in ReStructuredText (or ReST
or RST, for short) a rich but light-weight mark-up language aimed at
producing documentation. The Sphinx tool is used to produce the final
PDF and HTML documentation."
- http://ghc.readthedocs.io/en/8.0.1/editing-guide.html
Diffstat (limited to 'pkgs/development/compilers/ghc')
-rw-r--r--pkgs/development/compilers/ghc/8.0.1.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/ghc/8.0.1.nix b/pkgs/development/compilers/ghc/8.0.1.nix
index 58e2ff18c1be..1834f3ae50b6 100644
--- a/pkgs/development/compilers/ghc/8.0.1.nix
+++ b/pkgs/development/compilers/ghc/8.0.1.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, fetchpatch, bootPkgs, perl, gmp, ncurses, libiconv, binutils, coreutils
-, hscolour, patchutils, libxml2, libxslt, docbook_xsl, docbook_xml_dtd_45, docbook_xml_dtd_42
+, hscolour, patchutils, sphinx
 }:
 
 let
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
     (fetchFilteredPatch { url = https://git.haskell.org/ghc.git/patch/2f8cd14fe909a377b3e084a4f2ded83a0e6d44dd; sha256 = "06zvlgcf50ab58bw6yw3krn45dsmhg4cmlz4nqff8k4z1f1bj01v"; })
   ] ++ stdenv.lib.optional stdenv.isLinux ./ghc-no-madv-free.patch;
 
-  buildInputs = [ ghc perl libxml2 libxslt docbook_xsl docbook_xml_dtd_45 docbook_xml_dtd_42 hscolour ];
+  buildInputs = [ ghc perl hscolour sphinx];
 
   enableParallelBuilding = true;