From 623664daaa96a2366d120f19bbe6e1afee785ad9 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 14 Jan 2016 16:30:29 +0100 Subject: [PATCH] ghc-8.0.1: drop unused docbooc-related build inputs The documentation is now built via Sphinx (todo). --- pkgs/development/compilers/ghc/8.0.1.nix | 4 ++-- 1 file 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 9a1fc56dd88..7f337c01953 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, ghc, perl, gmp, ncurses, libiconv, binutils, coreutils -, libxml2, libxslt, docbook_xsl, docbook_xml_dtd_45, docbook_xml_dtd_42, hscolour +, hscolour }: stdenv.mkDerivation rec { @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { ./dont-pass-linker-flags-via-response-files.patch # https://github.com/NixOS/nixpkgs/issues/10752 ]; - buildInputs = [ ghc perl libxml2 libxslt docbook_xsl docbook_xml_dtd_45 docbook_xml_dtd_42 hscolour ]; + buildInputs = [ ghc perl hscolour ]; enableParallelBuilding = true;