nixpkgs/pkgs/development/haskell-modules/hoogle.nix

131 lines
3.6 KiB
Nix
Raw Normal View History

2015-01-22 23:10:08 +00:00
# Install not only the Hoogle library and executable, but also a local Hoogle
# database which provides "Source" links to all specified 'packages' -- or the
# current Haskell Platform if no custom package set is provided.
#
# It is intended to be used in config.nix similarly to:
#
# { packageOverrides = pkgs: rec {
#
# haskellPackages =
# let callPackage = pkgs.lib.callPackageWith haskellPackages;
# in pkgs.recurseIntoAttrs (pkgs.haskellPackages.override {
# extension = self: super: {
# hoogleLocal = pkgs.haskellPackages.hoogleLocal.override {
# packages = with pkgs.haskellPackages; [
# mmorph
# monadControl
# ];
# };
# };
# });
# }}
#
# This will build mmorph and monadControl, and have the hoogle installation
# refer to their documentation via symlink so they are not garbage collected.
{ lib, stdenv, hoogle, writeText
2015-01-22 23:10:08 +00:00
, ghc, packages ? [ ghc.ghc ]
}:
let
inherit (stdenv.lib) optional;
wrapper = ./hoogle-local-wrapper.sh;
2016-02-01 04:00:43 +00:00
isGhcjs = ghc.isGhcjs or false;
opts = lib.optionalString;
2016-02-01 04:00:43 +00:00
haddockExe =
if !isGhcjs
then "haddock"
else "haddock-ghcjs";
ghcName =
if !isGhcjs
then "ghc"
else "ghcjs";
docLibGlob =
if !isGhcjs
then ''share/doc/ghc*/html/libraries''
else ''doc/lib'';
# On GHCJS, use a stripped down version of GHC's prologue.txt
prologue =
if !isGhcjs
then "${ghc.doc}/${docLibGlob}/prologue.txt"
2016-02-01 04:00:43 +00:00
else writeText "ghcjs-prologue.txt" ''
This index includes documentation for many Haskell modules.
'';
2015-01-22 23:10:08 +00:00
in
stdenv.mkDerivation {
name = "hoogle-local-0.1";
buildInputs = [ghc hoogle];
2015-01-22 23:10:08 +00:00
phases = [ "buildPhase" ];
2015-01-22 23:10:08 +00:00
docPackages = (lib.closePropagation packages);
buildPhase = ''
2015-01-22 23:10:08 +00:00
if [ -z "$docPackages" ]; then
echo "ERROR: The packages attribute has not been set"
exit 1
fi
mkdir -p $out/share/doc/hoogle
2015-01-22 23:10:08 +00:00
echo importing builtin packages
for docdir in ${ghc.doc}/${docLibGlob}/*; do
name="$(basename $docdir)"
${opts isGhcjs ''docdir="$docdir/html"''}
if [[ -d $docdir ]]; then
ln -sfn $docdir $out/share/doc/hoogle/$name
fi
2015-01-22 23:10:08 +00:00
done
echo importing other packages
2015-01-22 23:10:08 +00:00
for i in $docPackages; do
if [[ ! $i == $out ]]; then
2016-02-01 04:00:43 +00:00
for docdir in $i/share/doc/*-${ghcName}-*/* $i/share/doc/*; do
name="$(basename $docdir)"
docdir=$docdir/html
2015-01-22 23:10:08 +00:00
if [[ -d $docdir ]]; then
ln -sfn $docdir $out/share/doc/hoogle/$name
2015-01-22 23:10:08 +00:00
fi
done
fi
done
echo building hoogle database
hoogle generate --database $out/share/doc/hoogle/default.hoo --local=$out/share/doc/hoogle
2015-01-22 23:10:08 +00:00
echo building haddock index
# adapted from GHC's gen_contents_index
cd $out/share/doc/hoogle
args=
for hdfile in `ls -1 */*.haddock | grep -v '/ghc\.haddock' | sort`
do
name_version=`echo "$hdfile" | sed 's#/.*##'`
args="$args --read-interface=$name_version,$hdfile"
done
2016-02-01 04:00:43 +00:00
${ghc}/bin/${haddockExe} --gen-index --gen-contents -o . \
-t "Haskell Hierarchical Libraries" \
2016-02-01 04:00:43 +00:00
-p ${prologue} \
$args
2015-01-22 23:10:08 +00:00
echo finishing up
2015-01-22 23:10:08 +00:00
mkdir -p $out/bin
substitute ${wrapper} $out/bin/hoogle \
--subst-var out --subst-var-by shell ${stdenv.shell} \
--subst-var-by hoogle ${hoogle}
chmod +x $out/bin/hoogle
'';
passthru = {
isHaskellLibrary = false; # for the filter in ./with-packages-wrapper.nix
};
2015-01-22 23:10:08 +00:00
meta = {
description = "A local Hoogle database";
platforms = ghc.meta.platforms;
hydraPlatforms = with stdenv.lib.platforms; none;
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
};
}