Fix broken rebase.

This commit is contained in:
Nicholas Clarke 2017-08-21 16:50:02 +01:00
parent 414a557904
commit be90e9aa31

View file

@ -432,7 +432,7 @@ stdenv.mkDerivation ({
# the directory containing the haddock documentation.
# `null' if no haddock documentation was built.
# TODO: fetch the self from the fixpoint instead
haddockDir = self: if doHaddock then "${docdir self.doc}/html" else null;
haddockDir = self: if doHaddock then "${docDir}/html" else null;
env = stdenv.mkDerivation {
name = "interactive-${pname}-${version}-environment";