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

27 lines
866 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 09:24:40 +01:00
, unorderedContainers, vector
2013-08-27 16:11:33 +01:00
}:
cabal.mkDerivation (self: {
pname = "linear";
version = "1.3.1.1";
sha256 = "174pqqc2gx8aigm51hfg7di35qbx65sgcqv6y1p25c2853g9h97y";
2013-08-27 16:11:33 +01:00
buildDepends = [
binary distributive hashable reflection semigroupoids semigroups
tagged transformers unorderedContainers vector
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
];
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
};
})