1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 00:54:11 +00:00
nixpkgs/pkgs/development/libraries/haskell/linear/default.nix

29 lines
927 B
Nix
Raw Normal View History

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