2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, llvm, random, repa, repaAlgorithms, repaIo, vector }:
|
2011-05-16 14:48:03 +01:00
|
|
|
|
2011-08-11 11:45:02 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-05-16 14:48:03 +01:00
|
|
|
pname = "repa-examples";
|
2012-09-24 11:06:08 +01:00
|
|
|
version = "3.2.2.1";
|
|
|
|
sha256 = "17v7ay33fwxjm0ip09jhh979rc6hzfxrrj1hkwj7x4x9gkd79yn7";
|
2011-08-11 11:45:02 +01:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ random repa repaAlgorithms repaIo vector ];
|
2011-08-23 11:35:49 +01:00
|
|
|
extraLibraries = [ llvm ];
|
2011-05-16 14:48:03 +01:00
|
|
|
meta = {
|
2011-08-06 21:59:04 +01:00
|
|
|
homepage = "http://repa.ouroborus.net";
|
2011-08-15 12:27:02 +01:00
|
|
|
description = "Examples using the Repa array library";
|
2011-08-06 21:59:04 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-11 11:45:02 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-05-16 14:48:03 +01:00
|
|
|
};
|
|
|
|
})
|