mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 05:37:40 +03:00
Add linear haskell library
This commit is contained in:
parent
a74ab8c0a1
commit
9cb6a10949
21
pkgs/development/libraries/haskell/linear/default.nix
Normal file
21
pkgs/development/libraries/haskell/linear/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ cabal, distributive, doctest, filepath, hashable, lens
|
||||||
|
, reflection, semigroupoids, semigroups, simpleReflect, tagged
|
||||||
|
, transformers, unorderedContainers, vector
|
||||||
|
}:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "linear";
|
||||||
|
version = "1.2";
|
||||||
|
sha256 = "0mna8k6plq0akki5j5zjk1xk1hgks1076q1h5s14v87d0h45wlrh";
|
||||||
|
buildDepends = [
|
||||||
|
distributive hashable reflection semigroupoids semigroups tagged
|
||||||
|
transformers unorderedContainers vector
|
||||||
|
];
|
||||||
|
testDepends = [ doctest filepath lens simpleReflect ];
|
||||||
|
meta = {
|
||||||
|
homepage = "http://github.com/ekmett/linear/";
|
||||||
|
description = "Linear Algebra";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
@ -1350,6 +1350,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||||||
|
|
||||||
liftedBase = callPackage ../development/libraries/haskell/lifted-base {};
|
liftedBase = callPackage ../development/libraries/haskell/lifted-base {};
|
||||||
|
|
||||||
|
linear = callPackage ../development/libraries/haskell/linear {};
|
||||||
|
|
||||||
List = callPackage ../development/libraries/haskell/List {};
|
List = callPackage ../development/libraries/haskell/List {};
|
||||||
|
|
||||||
ListLike = callPackage ../development/libraries/haskell/ListLike {};
|
ListLike = callPackage ../development/libraries/haskell/ListLike {};
|
||||||
|
Loading…
Reference in New Issue
Block a user