mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
haskell-packages.nix: added Tensor library, which is required by the latest version of OpenAL
svn path=/nixpkgs/trunk/; revision=28303
This commit is contained in:
parent
d5fbf640a3
commit
17c9761430
14
pkgs/development/libraries/haskell/Tensor/default.nix
Executable file
14
pkgs/development/libraries/haskell/Tensor/default.nix
Executable file
@ -0,0 +1,14 @@
|
||||
{cabal} :
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "Tensor";
|
||||
version = "1.0.0.1";
|
||||
sha256 = "10arhk5gkn5jxpb53r80bblpk0afdax1fc2mik40hj5g5g960cp9";
|
||||
meta = {
|
||||
homepage = "http://www.haskell.org/HOpenGL/";
|
||||
description = "Tensor data types";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.stdenv.lib.platforms.haskellPlatforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
||||
};
|
||||
})
|
@ -1061,6 +1061,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
tagsoup = callPackage ../development/libraries/haskell/tagsoup {};
|
||||
|
||||
terminfo = callPackage ../development/libraries/haskell/terminfo {
|
||||
Tensor = callPackage ../development/libraries/haskell/Tensor {};
|
||||
|
||||
inherit (self) extensibleExceptions /* only required for <= ghc6102 ?*/;
|
||||
inherit (pkgs) ncurses;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user