summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2009-04-20 14:23:50 +0000
committerAndres Löh <mail@andres-loeh.de>2009-04-20 14:23:50 +0000
commit035d7cb965be41a8986fc0ac72f60d63eb3abf43 (patch)
tree344487c564c7118dadf0a7ea939337f7d695e987 /pkgs/top-level
parentff894ae7736b8916412622b06ecfc42d9af87819 (diff)
downloadnixpkgs-035d7cb965be41a8986fc0ac72f60d63eb3abf43.tar
nixpkgs-035d7cb965be41a8986fc0ac72f60d63eb3abf43.tar.gz
nixpkgs-035d7cb965be41a8986fc0ac72f60d63eb3abf43.tar.bz2
nixpkgs-035d7cb965be41a8986fc0ac72f60d63eb3abf43.tar.lz
nixpkgs-035d7cb965be41a8986fc0ac72f60d63eb3abf43.tar.xz
nixpkgs-035d7cb965be41a8986fc0ac72f60d63eb3abf43.tar.zst
nixpkgs-035d7cb965be41a8986fc0ac72f60d63eb3abf43.zip
* Updated lhs2TeX.
* Propagated build inputs of Haskell pkgs are now automatically
  propagated user-env pkgs.
* Updated haskell-platform slightly.

svn path=/nixpkgs/trunk/; revision=15184
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/haskell-packages.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index f044d5f1247..396c895b237 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -78,6 +78,7 @@ rec {
     inherit cabal GLUT HTTP HUnit OpenAL OpenGL QuickCheck cgi fgl
       haskellSrc html parallel regexBase regexCompat regexPosix
       stm time xhtml zlib cabalInstall alex happy haddock;
+    ghc = ghcReal;
     inherit (pkgs) fetchurl;
   };
 
@@ -191,7 +192,7 @@ rec {
     inherit cabal;
   };
 
-  utf8_string = import ../development/libraries/haskell/utf8-string {
+  utf8String = import ../development/libraries/haskell/utf8-string {
     inherit cabal;
   };
 
@@ -302,7 +303,7 @@ rec {
   };
 
   leksah = import ../applications/editors/leksah {
-    inherit cabal gtk2hs binary parsec regexPosix utf8_string;
+    inherit cabal gtk2hs binary parsec regexPosix utf8String;
     inherit (pkgs) libedit makeWrapper;
   };
   
@@ -327,8 +328,8 @@ rec {
   };
 
   lhs2tex = import ../tools/typesetting/lhs2tex {
-    inherit ghc;
-    inherit (pkgs) fetchurl stdenv tetex polytable;
+    inherit cabal regexCompat utf8String;
+    inherit (pkgs) tetex polytable;
   };
 
 }