mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
Merge pull request #1114 from ocharles/linear
haskellPackages.linear: Update to 1.3.1
This commit is contained in:
commit
3ef25bbfe0
@ -1,19 +1,19 @@
|
|||||||
{ cabal, distributive, doctest, filepath, hashable, HUnit, lens
|
{ cabal, binary, distributive, doctest, filepath, hashable, HUnit
|
||||||
, reflection, semigroupoids, semigroups, simpleReflect, tagged
|
, lens, reflection, semigroupoids, semigroups, simpleReflect
|
||||||
, testFramework, testFrameworkHunit, transformers
|
, tagged, testFramework, testFrameworkHunit, transformers
|
||||||
, unorderedContainers, vector
|
, unorderedContainers, vector
|
||||||
}:
|
}:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "linear";
|
pname = "linear";
|
||||||
version = "1.3";
|
version = "1.3.1";
|
||||||
sha256 = "0b5qjsbdkqv0h1236lv2nisjh9yz7gc5bd6xv6i8q5jryzs43pi9";
|
sha256 = "1s07qbdi12rc4djk4s0ds5sh79qcqfmgrbwfj1ygskq3ra88qqsa";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
distributive hashable reflection semigroupoids semigroups tagged
|
binary distributive hashable reflection semigroupoids semigroups
|
||||||
transformers unorderedContainers vector
|
tagged transformers unorderedContainers vector
|
||||||
];
|
];
|
||||||
testDepends = [
|
testDepends = [
|
||||||
doctest filepath HUnit lens simpleReflect testFramework
|
binary doctest filepath HUnit lens simpleReflect testFramework
|
||||||
testFrameworkHunit
|
testFrameworkHunit
|
||||||
];
|
];
|
||||||
meta = {
|
meta = {
|
||||||
@ -21,5 +21,6 @@ cabal.mkDerivation (self: {
|
|||||||
description = "Linear Algebra";
|
description = "Linear Algebra";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
platforms = self.ghc.meta.platforms;
|
platforms = self.ghc.meta.platforms;
|
||||||
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user