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