haskell-repa: updated to version 2.1.1.5
svn path=/nixpkgs/trunk/; revision=28487
This commit is contained in:
parent
7616f36ebf
commit
a94124bf20
3 changed files with 13 additions and 9 deletions
|
@ -1,16 +1,20 @@
|
|||
{cabal, repa, repaAlgorithms, repaIO, vector, llvm} :
|
||||
{ cabal, repa, repaAlgorithms, repaIo, vector, llvm }:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "repa-examples";
|
||||
version = "2.1.0.2";
|
||||
sha256 = "056y2x8kada4d6a89sni2469c736z3d9ldp188n3i58h4kjqqfq7";
|
||||
extraBuildInputs = [ llvm ];
|
||||
propagatedBuildInputs = [ repa repaAlgorithms repaIO vector ];
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [ repa repaAlgorithms repaIo vector llvm ];
|
||||
meta = {
|
||||
homepage = "http://repa.ouroborus.net";
|
||||
description = "Examples using the Repa array library.";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
maintainers = [self.stdenv.lib.maintainers.andres];
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [
|
||||
self.stdenv.lib.maintainers.andres
|
||||
self.stdenv.lib.maintainers.simons
|
||||
];
|
||||
};
|
||||
})
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "repa";
|
||||
version = "2.1.1.2";
|
||||
sha256 = "0lvhcq46abby69i6sgcqrxljykayp1sr3rmy2nlg5cccxlj94sqi";
|
||||
version = "2.1.1.5";
|
||||
sha256 = "14lq6nsifxsap98c1hpxsyv4g973vyzjn2s94b3vfzkbq8vd7695";
|
||||
buildDepends = [ QuickCheck vector ];
|
||||
meta = {
|
||||
homepage = "http://repa.ouroborus.net";
|
||||
|
|
|
@ -1024,7 +1024,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
repaExamples = callPackage ../development/libraries/haskell/repa-examples {};
|
||||
|
||||
repaIO = callPackage ../development/libraries/haskell/repa-io {};
|
||||
repaIo = callPackage ../development/libraries/haskell/repa-io {};
|
||||
|
||||
RSA = callPackage ../development/libraries/haskell/RSA {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue