nixpkgs/pkgs/development/libraries/haskell/sparse/default.nix
Thomas Tuegel 5b421f7bdb Add Haskell packages 'hybrid-vectors' and 'sparse'.
Also, disable the test suite of 'linear' which fails running the doctests.
2014-02-07 10:04:38 +01:00

28 lines
975 B
Nix

{ 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;
};
})