Added Vec and Ranged-sets libraries for Haskell.

svn path=/nixpkgs/trunk/; revision=21767
This commit is contained in:
Andres Löh
2010-05-13 17:23:33 +00:00
parent 5bf578f7f9
commit a7e554d43c
3 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{cabal, QuickCheck}:
cabal.mkDerivation (self : {
pname = "Vec";
version = "0.9.7";
sha256 = "a67197f4dc022d6119a790e029a9475a17bb04ad812006bb154e5da9cd8f7ac7";
propagatedBuildInputs = [QuickCheck];
meta = {
description = "Fixed-length lists and low-dimensional linear algebra";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})