mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
29 lines
931 B
Nix
29 lines
931 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.10.1.1";
|
|
sha256 = "0falp5mpd9lifzz11dy3lvfph8n0i8n4mh5kk5kg974qvdvjilgq";
|
|
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 ];
|
|
};
|
|
})
|