summary refs log tree commit diff
path: root/pkgs/top-level/haskell-packages.nix
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2009-07-09 22:24:02 +0000
committerMarc Weber <marco-oweber@gmx.de>2009-07-09 22:24:02 +0000
commit676f4c4e2d3e2f40e9b4f5a9fee7de29c084a13e (patch)
tree03d64884f2dd4ce833c0ac9f4f22fcf74b01cce6 /pkgs/top-level/haskell-packages.nix
parent769dec7238cb0dee87d721a5ab44e8542f87c82e (diff)
downloadnixpkgs-676f4c4e2d3e2f40e9b4f5a9fee7de29c084a13e.tar
nixpkgs-676f4c4e2d3e2f40e9b4f5a9fee7de29c084a13e.tar.gz
nixpkgs-676f4c4e2d3e2f40e9b4f5a9fee7de29c084a13e.tar.bz2
nixpkgs-676f4c4e2d3e2f40e9b4f5a9fee7de29c084a13e.tar.lz
nixpkgs-676f4c4e2d3e2f40e9b4f5a9fee7de29c084a13e.tar.xz
nixpkgs-676f4c4e2d3e2f40e9b4f5a9fee7de29c084a13e.tar.zst
nixpkgs-676f4c4e2d3e2f40e9b4f5a9fee7de29c084a13e.zip
haskellPackages: adding bytestring, networkBytestring, getOptions, ghcSyb, hslogger, tar
svn path=/nixpkgs/trunk/; revision=16296
Diffstat (limited to 'pkgs/top-level/haskell-packages.nix')
-rw-r--r--pkgs/top-level/haskell-packages.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index f14aa24bed6..25e22f42eb8 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -38,6 +38,14 @@ rec {
     inherit cabal;
   };
 
+  bytestring = import ../development/libraries/haskell/bytestring {
+    inherit cabal;
+  };
+
+  networkBytestring = import ../development/libraries/haskell/network-bytestring {
+    inherit cabal bytestring network;
+  };
+
   cgi = import ../development/libraries/haskell/cgi {
     inherit cabal mtl network parsec xhtml;
   };
@@ -81,6 +89,10 @@ rec {
     inherit cabal mtl;
   };
 
+  getOptions = import ../development/libraries/haskell/get-options {
+    inherit cabal mtl; inherit (pkgs.bleedingEdgeRepos) sourceByName;
+  };
+
   ghcCore = import ../development/libraries/haskell/ghc-core {
     inherit cabal pcreLight hscolour;
   };
@@ -89,6 +101,10 @@ rec {
     inherit cabal;
   };
 
+  ghcSyb = import ../development/libraries/haskell/ghc-syb {
+    inherit cabal syb; inherit (pkgs.bleedingEdgeRepos) sourceByName;
+  };
+
   GLUT = import ../development/libraries/haskell/GLUT {
     inherit cabal OpenGL;
     glut = pkgs.freeglut;
@@ -268,6 +284,10 @@ rec {
     inherit cabal regexBase;
   };
 
+  syb = import ../development/libraries/haskell/syb {
+    inherit cabal;
+  };
+
   SDLImage = import ../development/libraries/haskell/SDL-image {
     inherit cabal SDL;
     inherit (pkgs) SDL_image;
@@ -464,6 +484,14 @@ rec {
     inherit cabal haskellSrcExts mtl uniplate hscolour;
   };
 
+  hslogger = import ../development/tools/haskell/hslogger {
+    inherit cabal mtl network time;
+  };
+
+  tar = import ../development/tools/haskell/tar {
+    inherit cabal binary;
+  };
+
   uuagc = import ../development/tools/haskell/uuagc {
     inherit cabal uulib;
   };