2012-09-17 15:17:56 +01:00
|
|
|
{ cabal, accelerate, binary, cryptohash, cuda, fclabels, filepath
|
|
|
|
, hashable, hashtables, languageCQuote, mainlandPretty, mtl, srcloc
|
|
|
|
, text, transformers, unorderedContainers
|
2012-05-20 18:38:03 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "accelerate-cuda";
|
2012-09-17 15:17:56 +01:00
|
|
|
version = "0.12.1.2";
|
|
|
|
sha256 = "184rxdp9idvhrqa0k3fqcm3nrgjcs3f53dz7wrhhpfa3iqrr6vd4";
|
2012-05-20 18:38:03 +01:00
|
|
|
buildDepends = [
|
2012-09-17 15:17:56 +01:00
|
|
|
accelerate binary cryptohash cuda fclabels filepath hashable
|
|
|
|
hashtables languageCQuote mainlandPretty mtl srcloc text
|
2012-05-20 18:38:03 +01:00
|
|
|
transformers unorderedContainers
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.cse.unsw.edu.au/~chak/project/accelerate/";
|
|
|
|
description = "Accelerate backend for NVIDIA GPUs";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2012-05-20 21:21:55 +01:00
|
|
|
platforms = self.stdenv.lib.platforms.none;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-05-20 18:38:03 +01:00
|
|
|
};
|
|
|
|
})
|