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

Log:
haskell-packages.nix: added double-conversion

This package is required by the latest version of blaze-textual.

Added:
   nixpkgs/trunk/pkgs/development/libraries/haskell/double-conversion/
   
nixpkgs/trunk/pkgs/development/libraries/haskell/double-conversion/default.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/haskell-packages.nix

Added: 
nixpkgs/trunk/pkgs/development/libraries/haskell/double-conversion/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ 
nixpkgs/trunk/pkgs/development/libraries/haskell/double-conversion/default.nix  
    Sun Aug  7 18:22:54 2011        (r28239)
@@ -0,0 +1,13 @@
+{cabal, text} :
+
+cabal.mkDerivation (self : {
+  pname = "double-conversion";
+  version = "0.2.0.1";
+  sha256 = "146ijcv55k0lqlw8y4nz7p5kjpwry2jzbqmkan904pnlcfv4a60a";
+  propagatedBuildInputs = [ text ];
+  meta = {
+    homepage = "https://github.com/mailrank/double-conversion";;
+    description = "Fast conversion between double precision floating point and 
text";
+    license = self.stdenv.lib.licenses.bsd3;
+  };
+})

Modified: nixpkgs/trunk/pkgs/top-level/haskell-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Aug  7 18:22:43 
2011        (r28238)
+++ nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Aug  7 18:22:54 
2011        (r28239)
@@ -489,6 +489,10 @@
 
   dotgen = callPackage ../development/libraries/haskell/dotgen {};
 
+  doubleConversion = callPackage 
../development/libraries/haskell/double-conversion {
+    text = self.text_0_11_1_5;
+  };
+
   editline = callPackage ../development/libraries/haskell/editline {
     inherit (pkgs) libedit;
   };
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to