Author: simons
Date: Sun Aug  7 22:00:36 2011
New Revision: 28311
URL: https://svn.nixos.org/websvn/nix/?rev=28311&sc=1

Log:
haskell-packages.nix: added path-pieces library, which is required by recent 
versions of web-route

Added:
   nixpkgs/trunk/pkgs/development/libraries/haskell/path-pieces/
   nixpkgs/trunk/pkgs/development/libraries/haskell/path-pieces/default.nix   
(contents, props changed)
Modified:
   nixpkgs/trunk/pkgs/top-level/haskell-packages.nix

Added: nixpkgs/trunk/pkgs/development/libraries/haskell/path-pieces/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/libraries/haskell/path-pieces/default.nix    
Sun Aug  7 22:00:36 2011        (r28311)
@@ -0,0 +1,15 @@
+{cabal, text} :
+
+cabal.mkDerivation (self : {
+  pname = "path-pieces";
+  version = "0.0.0";
+  sha256 = "09sk4wlzy37gaii7spisjy4a3pizis9si4kv389bki20gfwpaivf";
+  propagatedBuildInputs = [ text ];
+  meta = {
+    homepage = "http://github.com/snoyberg/path-pieces";;
+    description = "Components of paths.";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.stdenv.lib.platforms.haskellPlatforms;
+    maintainers = [ self.stdenv.lib.maintainers.simons ];
+  };
+})

Modified: nixpkgs/trunk/pkgs/top-level/haskell-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Aug  7 22:00:32 
2011        (r28310)
+++ nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Aug  7 22:00:36 
2011        (r28311)
@@ -845,6 +845,8 @@
 
   OpenGL = self.OpenGL_2_2_1_1;
 
+  pathPieces = callPackage ../development/libraries/haskell/path-pieces {};
+
   pandoc_1_6_0_1 = callPackage 
../development/libraries/haskell/pandoc/1.6.0.1.nix {
     texmath = self.texmath_0_4;
   };
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to