Add Haskell packages 'hybrid-vectors' and 'sparse'.
Also, disable the test suite of 'linear' which fails running the doctests.
This commit is contained in:
committed by
Peter Simons
parent
6498f48976
commit
5b421f7bdb
28
pkgs/development/libraries/haskell/sparse/default.nix
Normal file
28
pkgs/development/libraries/haskell/sparse/default.nix
Normal 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;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user