Author: simons
Date: Sun Aug  7 20:24:50 2011
New Revision: 28277
URL: https://svn.nixos.org/websvn/nix/?rev=28277&sc=1

Log:
haskell-aeson: updated to version 0.3.2.10 in an attempt to fix build failures

That attempt was not successful, unfortunately, the package still
doesn't compile. :-(

Modified:
   nixpkgs/trunk/pkgs/development/libraries/haskell/aeson/default.nix

Modified: nixpkgs/trunk/pkgs/development/libraries/haskell/aeson/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/libraries/haskell/aeson/default.nix  Sun Aug 
 7 20:24:46 2011        (r28276)
+++ nixpkgs/trunk/pkgs/development/libraries/haskell/aeson/default.nix  Sun Aug 
 7 20:24:50 2011        (r28277)
@@ -1,18 +1,22 @@
-{cabal, attoparsec, blazeBuilder, blazeTextual, deepseq, hashable, mtl,
- syb, text, unorderedContainers, vector}:
+{cabal, attoparsec, blazeBuilder, blazeTextual, deepseq, hashable,
+ mtl, syb, text, unorderedContainers, vector} :
 
 cabal.mkDerivation (self : {
   pname = "aeson";
-  version = "0.3.2.9";
-  sha256 = "1qaajk797zpickw4ik5lc03wnmxkrcmv3zik7n1bjqx6h37h0zqw";
+  version = "0.3.2.10";
+  sha256 = "003bd6nyayd7rd9j4ncjgv7kvsncv4sb84yskqjwiq7y0b36shj8";
   propagatedBuildInputs = [
-    attoparsec blazeBuilder blazeTextual deepseq hashable mtl
-    syb text unorderedContainers vector
+    attoparsec blazeBuilder blazeTextual deepseq hashable mtl syb text
+    unorderedContainers vector
   ];
   meta = {
+    homepage = "http://github.com/mailrank/aeson";;
     description = "Fast JSON parsing and encoding";
-    license = "BSD3";
-    maintainers = [self.stdenv.lib.maintainers.andres];
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.stdenv.lib.platforms.haskellPlatforms;
+    maintainers = [
+      self.stdenv.lib.maintainers.simons
+      self.stdenv.lib.maintainers.andres
+    ];
   };
 })
-
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to