5b421f7bdb
Also, disable the test suite of 'linear' which fails running the doctests.
28 lines
926 B
Nix
28 lines
926 B
Nix
{ cabal, adjunctions, binary, distributive, doctest, filepath
|
|
, hashable, HUnit, lens, reflection, semigroupoids, semigroups
|
|
, simpleReflect, tagged, testFramework, testFrameworkHunit
|
|
, transformers, unorderedContainers, vector, void
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "linear";
|
|
version = "1.6";
|
|
sha256 = "1aka0da4mwv9cdj76armlava0d4c5f8s2pv10fk6b5glyb0c1a7x";
|
|
buildDepends = [
|
|
adjunctions binary distributive hashable lens reflection
|
|
semigroupoids semigroups tagged transformers unorderedContainers
|
|
vector void
|
|
];
|
|
testDepends = [
|
|
binary doctest filepath HUnit lens simpleReflect testFramework
|
|
testFrameworkHunit
|
|
];
|
|
doCheck = false;
|
|
meta = {
|
|
homepage = "http://github.com/ekmett/linear/";
|
|
description = "Linear Algebra";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
};
|
|
})
|