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

27 lines
864 B
Nix
Raw Normal View History

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