ghc-8.0.2: add sphinx to inputs for documentation

Closes https://github.com/NixOS/nixpkgs/pull/21434.
This commit is contained in:
Laverne Schrock
2016-12-28 17:30:16 +01:00
committed by Peter Simons
parent 1a78981b2f
commit 527468209c
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, fetchpatch, bootPkgs, perl, gmp, ncurses, libiconv, binutils, coreutils
, hscolour, patchutils
, hscolour, patchutils, sphinx
}:
let
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
patches = [] ++ stdenv.lib.optional stdenv.isLinux ./ghc-no-madv-free.patch;
buildInputs = [ ghc perl hscolour ];
buildInputs = [ ghc perl hscolour sphinx ];
enableParallelBuilding = true;
+1
View File
@@ -50,6 +50,7 @@ rec {
ghc802 = callPackage ../development/compilers/ghc/8.0.2.nix rec {
bootPkgs = packages.ghc7103;
inherit (bootPkgs) hscolour;
sphinx = pkgs.python27Packages.sphinx;
};
ghcHEAD = callPackage ../development/compilers/ghc/head.nix rec {
bootPkgs = packages.ghc7103;