Added the Haskell criterion package.

svn path=/nixpkgs/trunk/; revision=24741
This commit is contained in:
Andres Löh
2010-11-17 15:38:16 +00:00
parent 61e9a549f6
commit fa79bbbc9a
8 changed files with 91 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
{cabal, primitive, vector}:
cabal.mkDerivation (self : {
pname = "vector-algorithms";
version = "0.3.4";
sha256 = "19b25myz0lhf010lgajlkz72g3w119x89i097rmbc2y4z1bjgpiv";
propagatedBuildInputs = [primitive vector];
meta = {
description = "Efficient algorithms for vector arrays";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})