mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 10:56:56 +00:00
29 lines
928 B
Nix
29 lines
928 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.8.1";
|
|
sha256 = "1hrvlavghwj8psi3qdmvnccrr2vk8rss8ggw87gn0jh771pv8zl2";
|
|
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 ];
|
|
};
|
|
})
|