Author: simons
Date: Fri Sep  2 18:31:44 2011
New Revision: 28985
URL: https://svn.nixos.org/websvn/nix/?rev=28985&sc=1

Log:
haskell-vector-algorithms: updated to version 0.5.3

Added:
   nixpkgs/trunk/pkgs/development/libraries/haskell/vector-algorithms/0.5.3.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/haskell-packages.nix

Added: 
nixpkgs/trunk/pkgs/development/libraries/haskell/vector-algorithms/0.5.3.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ 
nixpkgs/trunk/pkgs/development/libraries/haskell/vector-algorithms/0.5.3.nix    
    Fri Sep  2 18:31:44 2011        (r28985)
@@ -0,0 +1,18 @@
+{ cabal, primitive, vector }:
+
+cabal.mkDerivation (self: {
+  pname = "vector-algorithms";
+  version = "0.5.3";
+  sha256 = "14h2x3yrb4fji8bf84xbfp84pax6lzr8njc0c4061xpwcmair36j";
+  buildDepends = [ primitive vector ];
+  meta = {
+    homepage = "http://code.haskell.org/~dolio/";;
+    description = "Efficient algorithms for vector arrays";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [
+      self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
+    ];
+  };
+})

Modified: nixpkgs/trunk/pkgs/top-level/haskell-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Fri Sep  2 18:24:27 
2011        (r28984)
+++ nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Fri Sep  2 18:31:44 
2011        (r28985)
@@ -1230,8 +1230,8 @@
   vector = callPackage ../development/libraries/haskell/vector {};
 
   vectorAlgorithms_0_4 = callPackage 
../development/libraries/haskell/vector-algorithms/0.4.nix {};
-  vectorAlgorithms_0_5_2 = callPackage 
../development/libraries/haskell/vector-algorithms/0.5.2.nix {};
-  vectorAlgorithms = self.vectorAlgorithms_0_5_2;
+  vectorAlgorithms_0_5_3 = callPackage 
../development/libraries/haskell/vector-algorithms/0.5.3.nix {};
+  vectorAlgorithms = self.vectorAlgorithms_0_5_3;
 
   vectorSpace = callPackage ../development/libraries/haskell/vector-space {};
 
_______________________________________________
nix-commits mailing list
nix-comm...@cs.uu.nl
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to