summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorNicholas Clarke <nick@topos.org.uk>2017-08-21 16:50:02 +0100
committerNicholas Clarke <nick@topos.org.uk>2017-09-04 12:35:58 +0100
commitbe90e9aa311027be249a4faade59eda265b2043d (patch)
treeb62a594d337658503ed0f7bb6dcf9320fbfe89ab /pkgs/development/haskell-modules
parent414a557904f5e22285c4abba4cb2c3ff7b75bb2c (diff)
downloadnixlib-be90e9aa311027be249a4faade59eda265b2043d.tar
nixlib-be90e9aa311027be249a4faade59eda265b2043d.tar.gz
nixlib-be90e9aa311027be249a4faade59eda265b2043d.tar.bz2
nixlib-be90e9aa311027be249a4faade59eda265b2043d.tar.lz
nixlib-be90e9aa311027be249a4faade59eda265b2043d.tar.xz
nixlib-be90e9aa311027be249a4faade59eda265b2043d.tar.zst
nixlib-be90e9aa311027be249a4faade59eda265b2043d.zip
Fix broken rebase.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/generic-builder.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix
index d56a713318b8..d49f31129231 100644
--- a/pkgs/development/haskell-modules/generic-builder.nix
+++ b/pkgs/development/haskell-modules/generic-builder.nix
@@ -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";