Author: simons
Date: Wed May  2 09:25:23 2012
New Revision: 33969
URL: https://nixos.org/websvn/nix/?rev=33969&sc=1

Log:
Updated Haskell packages.

 - cpu: added version 0.1.0
 - cryptocipher: updated to version 0.3.1
 - fclabels: updated to version 1.1.3
 - hamlet: updated to version 1.0.1.2
 - highlighting-kate: updated to version 0.5.0.6
 - lifted-base: updated to version 0.1.1
 - monad-control: updated to version 0.3.1.3
 - reactive-banana: updated to version 0.5.0.2
 - test-framework-quickcheck2: updated to version 0.2.12.2
 - test-framework-quickcheck: updated to version 0.2.8.1

Added:
   nixpkgs/trunk/pkgs/development/libraries/haskell/cpu/
   nixpkgs/trunk/pkgs/development/libraries/haskell/cpu/default.nix
Modified:
   nixpkgs/trunk/pkgs/development/libraries/haskell/cryptocipher/default.nix
   nixpkgs/trunk/pkgs/development/libraries/haskell/fclabels/default.nix
   nixpkgs/trunk/pkgs/development/libraries/haskell/hamlet/default.nix
   
nixpkgs/trunk/pkgs/development/libraries/haskell/highlighting-kate/default.nix
   nixpkgs/trunk/pkgs/development/libraries/haskell/lifted-base/default.nix
   nixpkgs/trunk/pkgs/development/libraries/haskell/monad-control/default.nix
   nixpkgs/trunk/pkgs/development/libraries/haskell/reactive-banana/default.nix
   
nixpkgs/trunk/pkgs/development/libraries/haskell/test-framework-quickcheck/default.nix
   
nixpkgs/trunk/pkgs/development/libraries/haskell/test-framework-quickcheck2/default.nix
   nixpkgs/trunk/pkgs/top-level/haskell-packages.nix

Added: nixpkgs/trunk/pkgs/development/libraries/haskell/cpu/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/libraries/haskell/cpu/default.nix    Wed May 
 2 09:25:23 2012        (r33969)
@@ -0,0 +1,16 @@
+{ cabal }:
+
+cabal.mkDerivation (self: {
+  pname = "cpu";
+  version = "0.1.0";
+  sha256 = "020s1cv3qkhjq0gypxligg2x68izb3z82krv8y1m1k360554nqyg";
+  isLibrary = true;
+  isExecutable = true;
+  meta = {
+    homepage = "http://github.com/vincenthz/hs-cpu";;
+    description = "Cpu information and properties helpers";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [ self.stdenv.lib.maintainers.andres ];
+  };
+})

Modified: 
nixpkgs/trunk/pkgs/development/libraries/haskell/cryptocipher/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/libraries/haskell/cryptocipher/default.nix   
Wed May  2 03:14:05 2012        (r33968)
+++ nixpkgs/trunk/pkgs/development/libraries/haskell/cryptocipher/default.nix   
Wed May  2 09:25:23 2012        (r33969)
@@ -1,15 +1,15 @@
-{ cabal, cereal, cryptoApi, cryptoPubkeyTypes, primitive, tagged
-, vector
+{ cabal, cereal, cpu, cryptoApi, cryptoPubkeyTypes, primitive
+, tagged, vector
 }:
 
 cabal.mkDerivation (self: {
   pname = "cryptocipher";
-  version = "0.3.0";
-  sha256 = "17jbzssdbprspadz5ynyam60l5iw7s809irklfg1ii89x26mlyix";
+  version = "0.3.1";
+  sha256 = "14icn1p0mjg4y45q6pbh8qamw5hm1z2z7d424gmiknbf24nq8nmi";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [
-    cereal cryptoApi cryptoPubkeyTypes primitive tagged vector
+    cereal cpu cryptoApi cryptoPubkeyTypes primitive tagged vector
   ];
   meta = {
     homepage = "http://github.com/vincenthz/hs-cryptocipher";;

Modified: nixpkgs/trunk/pkgs/development/libraries/haskell/fclabels/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/libraries/haskell/fclabels/default.nix       
Wed May  2 03:14:05 2012        (r33968)
+++ nixpkgs/trunk/pkgs/development/libraries/haskell/fclabels/default.nix       
Wed May  2 09:25:23 2012        (r33969)
@@ -2,8 +2,8 @@
 
 cabal.mkDerivation (self: {
   pname = "fclabels";
-  version = "1.1.1.1";
-  sha256 = "170lsalbak7l52fzdppdvq88ky8y06zzlxy6h18zpd1g18caa0q7";
+  version = "1.1.3";
+  sha256 = "1f8aav4gcpixmnnwcml0aqsqswb8fc0rp986nbyap22gmcw4hflx";
   buildDepends = [ mtl transformers ];
   meta = {
     description = "First class accessor labels";

Modified: nixpkgs/trunk/pkgs/development/libraries/haskell/hamlet/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/libraries/haskell/hamlet/default.nix Wed May 
 2 03:14:05 2012        (r33968)
+++ nixpkgs/trunk/pkgs/development/libraries/haskell/hamlet/default.nix Wed May 
 2 09:25:23 2012        (r33969)
@@ -4,8 +4,8 @@
 
 cabal.mkDerivation (self: {
   pname = "hamlet";
-  version = "1.0.1.1";
-  sha256 = "16a7aym0cpcq9lsiwfh5bvgh1bkyz4j06bhyvnxawsdgzmmsbch4";
+  version = "1.0.1.2";
+  sha256 = "1lb1q2nkih7z63gh1rdwl4656ybmpdqic1d09q5jqgm6bjqrgw53";
   buildDepends = [
     blazeBuilder blazeHtml failure parsec shakespeare text
   ];

Modified: 
nixpkgs/trunk/pkgs/development/libraries/haskell/highlighting-kate/default.nix
==============================================================================
--- 
nixpkgs/trunk/pkgs/development/libraries/haskell/highlighting-kate/default.nix  
    Wed May  2 03:14:05 2012        (r33968)
+++ 
nixpkgs/trunk/pkgs/development/libraries/haskell/highlighting-kate/default.nix  
    Wed May  2 09:25:23 2012        (r33969)
@@ -2,8 +2,8 @@
 
 cabal.mkDerivation (self: {
   pname = "highlighting-kate";
-  version = "0.5.0.5";
-  sha256 = "005k3yc406h4wz5jk47nk4g5qb409kd7dwyw7n9g31gjqxp73p8v";
+  version = "0.5.0.6";
+  sha256 = "068ksmi8kdjm00279lnnhih4sqs9yh8mnvvn71brwak5r361m056";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [ blazeHtml filepath mtl parsec regexPcreBuiltin ];

Modified: 
nixpkgs/trunk/pkgs/development/libraries/haskell/lifted-base/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/libraries/haskell/lifted-base/default.nix    
Wed May  2 03:14:05 2012        (r33968)
+++ nixpkgs/trunk/pkgs/development/libraries/haskell/lifted-base/default.nix    
Wed May  2 09:25:23 2012        (r33969)
@@ -2,8 +2,8 @@
 
 cabal.mkDerivation (self: {
   pname = "lifted-base";
-  version = "0.1.0.4";
-  sha256 = "0xd41nminlrj78l2ggcba6z764c5v6x9w08d6mb0qk3ssj7ldv89";
+  version = "0.1.1";
+  sha256 = "148631zwax809nzm01fqymmgvkscyv1kii36a12phkmg7sx014vm";
   buildDepends = [
     baseUnicodeSymbols monadControl transformersBase
   ];

Modified: 
nixpkgs/trunk/pkgs/development/libraries/haskell/monad-control/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/libraries/haskell/monad-control/default.nix  
Wed May  2 03:14:05 2012        (r33968)
+++ nixpkgs/trunk/pkgs/development/libraries/haskell/monad-control/default.nix  
Wed May  2 09:25:23 2012        (r33969)
@@ -2,8 +2,8 @@
 
 cabal.mkDerivation (self: {
   pname = "monad-control";
-  version = "0.3.1.2";
-  sha256 = "0nrvz5zc5w7j2payg7ji7dpvkbk4ssg75pwi3pqjq6jrfyf4aw9m";
+  version = "0.3.1.3";
+  sha256 = "0sx0jr8hccqh519sgn428y4xfk6m5jpwfm9201vn8zj1cxlppjv9";
   buildDepends = [
     baseUnicodeSymbols transformers transformersBase
   ];

Modified: 
nixpkgs/trunk/pkgs/development/libraries/haskell/reactive-banana/default.nix
==============================================================================
--- 
nixpkgs/trunk/pkgs/development/libraries/haskell/reactive-banana/default.nix    
    Wed May  2 03:14:05 2012        (r33968)
+++ 
nixpkgs/trunk/pkgs/development/libraries/haskell/reactive-banana/default.nix    
    Wed May  2 09:25:23 2012        (r33969)
@@ -4,8 +4,8 @@
 
 cabal.mkDerivation (self: {
   pname = "reactive-banana";
-  version = "0.5.0.1";
-  sha256 = "04mr1pb0q1ks29q3mzy3apk5ki1sbzlslavbldfnrrq3g2s90366";
+  version = "0.5.0.2";
+  sha256 = "10391b6vwgp5harzmiji66qs4zc5qipagak1mm2j8njhbqi8z0rb";
   buildDepends = [
     fclabels hashable QuickCheck transformers unorderedContainers vault
   ];

Modified: 
nixpkgs/trunk/pkgs/development/libraries/haskell/test-framework-quickcheck/default.nix
==============================================================================
--- 
nixpkgs/trunk/pkgs/development/libraries/haskell/test-framework-quickcheck/default.nix
      Wed May  2 03:14:05 2012        (r33968)
+++ 
nixpkgs/trunk/pkgs/development/libraries/haskell/test-framework-quickcheck/default.nix
      Wed May  2 09:25:23 2012        (r33969)
@@ -4,8 +4,8 @@
 
 cabal.mkDerivation (self: {
   pname = "test-framework-quickcheck";
-  version = "0.2.8";
-  sha256 = "0ca6s7dnrdr9s2gdpfb74lswlj2lj091crk89m3yqjcadchkh3vl";
+  version = "0.2.8.1";
+  sha256 = "042vdq18mqw4rhsj3x51mz1iv9zbxvlz7jg6r9cni2xpw5m7v6dk";
   buildDepends = [
     deepseq extensibleExceptions QuickCheck random testFramework
   ];

Modified: 
nixpkgs/trunk/pkgs/development/libraries/haskell/test-framework-quickcheck2/default.nix
==============================================================================
--- 
nixpkgs/trunk/pkgs/development/libraries/haskell/test-framework-quickcheck2/default.nix
     Wed May  2 03:14:05 2012        (r33968)
+++ 
nixpkgs/trunk/pkgs/development/libraries/haskell/test-framework-quickcheck2/default.nix
     Wed May  2 09:25:23 2012        (r33969)
@@ -2,8 +2,8 @@
 
 cabal.mkDerivation (self: {
   pname = "test-framework-quickcheck2";
-  version = "0.2.12.1";
-  sha256 = "03m6kf6lhi9nzymfyfqqimfgs6139bpa0pzbxzvz2nvizdnbmmcw";
+  version = "0.2.12.2";
+  sha256 = "08m8y78qy23imcwyqdqla7syxdf91iqrb0j8g6g7gwsg5asjq6ip";
   buildDepends = [
     extensibleExceptions QuickCheck random testFramework
   ];

Modified: nixpkgs/trunk/pkgs/top-level/haskell-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Wed May  2 03:14:05 
2012        (r33968)
+++ nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Wed May  2 09:25:23 
2012        (r33969)
@@ -591,6 +591,8 @@
 
   curl = callPackage ../development/libraries/haskell/curl { curl = pkgs.curl; 
};
 
+  cpu = callPackage ../development/libraries/haskell/cpu {};
+
   dataAccessor = callPackage 
../development/libraries/haskell/data-accessor/data-accessor.nix {};
 
   dataAccessorTemplate = callPackage 
../development/libraries/haskell/data-accessor/data-accessor-template.nix {};
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to