nixpkgs/pkgs/development/libraries/haskell/vector-algorithms/0.4.nix
Peter Simons 5bf6cf7fc5 vector-algorithms: updated to version 0.5.2
The old 0.4 version is still required because snapServer won't accept
the latest version.

svn path=/nixpkgs/trunk/; revision=28254
2011-08-07 19:33:17 +00:00

15 lines
378 B
Nix

{cabal, primitive, vector}:
cabal.mkDerivation (self : {
pname = "vector-algorithms";
version = "0.4";
sha256 = "04ig2bx3gm42mwhcz5n8kp9sy33d1hrwm940kfxny74fc06422h8";
propagatedBuildInputs = [primitive vector];
meta = {
description = "Efficient algorithms for vector arrays";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})