summary refs log tree commit diff
path: root/pkgs/top-level/all-packages.nix
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-03-13 22:55:18 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-03-13 22:55:18 +0000
commit569554348244dfc8755a5b6529064b19a6cce218 (patch)
tree3093d3a0b89ff8744dcb6af251ffa36127b684ed /pkgs/top-level/all-packages.nix
parent9433120f1fb22fac2ad859771d9b347790d7823d (diff)
downloadnixpkgs-569554348244dfc8755a5b6529064b19a6cce218.tar
nixpkgs-569554348244dfc8755a5b6529064b19a6cce218.tar.gz
nixpkgs-569554348244dfc8755a5b6529064b19a6cce218.tar.bz2
nixpkgs-569554348244dfc8755a5b6529064b19a6cce218.tar.lz
nixpkgs-569554348244dfc8755a5b6529064b19a6cce218.tar.xz
nixpkgs-569554348244dfc8755a5b6529064b19a6cce218.tar.zst
nixpkgs-569554348244dfc8755a5b6529064b19a6cce218.zip
added 2 repos and renamed ghc_68_extra to ghc68extraLibs
svn path=/nixpkgs/trunk/; revision=11109
Diffstat (limited to 'pkgs/top-level/all-packages.nix')
-rw-r--r--pkgs/top-level/all-packages.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 2d490661bde..0722a2228dc 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -159,7 +159,7 @@ rec {
     ";
   };
   # example usage
-  #testSourceWithTags = sourceWithTagsDerivation (ghc68_extra_libs ghcsAndLibs.ghc68).happs_server_darcs.passthru.sourceWithTags;
+  #testSourceWithTags = sourceWithTagsDerivation (ghc68extraLibs ghcsAndLibs.ghc68).happs_server_darcs.passthru.sourceWithTags;
 
   addCTaggingInfo = deriv :
     deriv // { 
@@ -1169,7 +1169,7 @@ rec {
   flapjax = import ../development/compilers/flapjax {
     inherit fetchurl stdenv;
     ghc = ghcsAndLibs.ghc68.ghc;
-    libs = with (ghc68_extra_libs ghcsAndLibs.ghc68 // ghcsAndLibs.ghc68.core_libs); [ mtl parsec random ];
+    libs = with (ghc68extraLibs ghcsAndLibs.ghc68 // ghcsAndLibs.ghc68.core_libs); [ mtl parsec random ];
   };
 
   g77 = import ../build-support/gcc-wrapper {
@@ -1348,7 +1348,7 @@ rec {
   };
 
   # this may change in the future 
-  ghc68_extra_libs = (import ../misc/ghc68_extra_libs ) {
+  ghc68extraLibs = (import ../misc/ghc68extraLibs ) {
     # lib like stuff
     inherit bleedingEdgeRepos fetchurl lib addHasktagsTaggingInfo ghcCabalDerivation pkgconfig unzip;
     # used (non haskell) libraries (ffi etc)
@@ -1374,8 +1374,8 @@ rec {
         # (map ( a : __getAttr a ghcsAndLibs.ghc68.core_libs ) [ "cabal" "mtl" "base"  ]
 
         # some extra libs
-           ++  (lib.flattenAttrs (ghc68_extra_libs ghcsAndLibs.ghc68) );
-        # ++ map ( a : __getAttr a (ghc68_extra_libs ghcsAndLibs.ghc68 ) ) [ "mtl" "parsec" ... ]
+           ++  (lib.flattenAttrs (ghc68extraLibs ghcsAndLibs.ghc68) );
+        # ++ map ( a : __getAttr a (ghc68extraLibs ghcsAndLibs.ghc68 ) ) [ "mtl" "parsec" ... ]
       inherit ghc;
   };