nixpkgs/pkgs/development/libraries/haskell/linear/default.nix

29 lines
926 B
Nix
Raw Normal View History

2014-01-30 08:32:53 +01:00
{ cabal, adjunctions, binary, distributive, doctest, filepath
, hashable, HUnit, lens, reflection, semigroupoids, semigroups
, simpleReflect, tagged, testFramework, testFrameworkHunit
, transformers, unorderedContainers, vector, void
2013-08-27 17:11:33 +02:00
}:
cabal.mkDerivation (self: {
pname = "linear";
2014-01-30 08:32:53 +01:00
version = "1.6";
sha256 = "1aka0da4mwv9cdj76armlava0d4c5f8s2pv10fk6b5glyb0c1a7x";
2013-08-27 17:11:33 +02:00
buildDepends = [
2014-01-30 08:32:53 +01:00
adjunctions binary distributive hashable lens reflection
semigroupoids semigroups tagged transformers unorderedContainers
vector void
2013-08-27 17:11:33 +02:00
];
2013-09-18 10:24:40 +02:00
testDepends = [
binary doctest filepath HUnit lens simpleReflect testFramework
2013-09-18 10:24:40 +02:00
testFrameworkHunit
];
doCheck = false;
2013-08-27 17:11:33 +02:00
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 ];
2013-08-27 17:11:33 +02:00
};
})