Add Haskell packages 'hybrid-vectors' and 'sparse'.

Also, disable the test suite of 'linear' which fails running the doctests.
This commit is contained in:
Thomas Tuegel
2014-02-06 13:25:14 -06:00
committed by Peter Simons
parent 6498f48976
commit 5b421f7bdb
4 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{ cabal, contravariant, deepseq, doctest, filepath, hlint
, hybridVectors, lens, linear, mtl, primitive, QuickCheck
, semigroups, simpleReflect, testFramework
, testFrameworkQuickcheck2, testFrameworkTh, transformers, vector
, vectorAlgorithms
}:
cabal.mkDerivation (self: {
pname = "sparse";
version = "0.9";
sha256 = "0v0z7kjgmcdx9ajlhr9pc1i3qqghd60s02xnlmj4hcxby8k0r8mc";
buildDepends = [
contravariant deepseq hybridVectors lens primitive transformers
vector vectorAlgorithms
];
testDepends = [
deepseq doctest filepath hlint hybridVectors lens linear mtl
QuickCheck semigroups simpleReflect testFramework
testFrameworkQuickcheck2 testFrameworkTh transformers vector
];
doCheck = false;
meta = {
homepage = "http://github.com/ekmett/sparse";
description = "A playground of sparse linear algebra primitives using Morton ordering";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})