3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/linear/default.nix

26 lines
780 B
Nix
Raw Normal View History

2013-09-18 09:24:40 +01:00
{ cabal, distributive, doctest, filepath, hashable, HUnit, lens
2013-08-27 16:11:33 +01:00
, reflection, semigroupoids, semigroups, simpleReflect, tagged
2013-09-18 09:24:40 +01:00
, testFramework, testFrameworkHunit, transformers
, unorderedContainers, vector
2013-08-27 16:11:33 +01:00
}:
cabal.mkDerivation (self: {
pname = "linear";
2013-09-18 09:24:40 +01:00
version = "1.3";
sha256 = "0b5qjsbdkqv0h1236lv2nisjh9yz7gc5bd6xv6i8q5jryzs43pi9";
2013-08-27 16:11:33 +01:00
buildDepends = [
distributive hashable reflection semigroupoids semigroups tagged
transformers unorderedContainers vector
];
2013-09-18 09:24:40 +01:00
testDepends = [
doctest filepath HUnit lens simpleReflect testFramework
testFrameworkHunit
];
2013-08-27 16:11:33 +01:00
meta = {
homepage = "http://github.com/ekmett/linear/";
description = "Linear Algebra";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})