2012-09-17 16:17:56 +02:00
|
|
|
{ cabal, accelerate, binary, cryptohash, cuda, fclabels, filepath
|
2013-05-11 15:17:47 +02:00
|
|
|
, hashable, hashtables, languageCQuote, mainlandPretty, mtl
|
|
|
|
, SafeSemaphore, srcloc, text, transformers, unorderedContainers
|
2012-05-20 19:38:03 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "accelerate-cuda";
|
2013-10-02 20:00:57 +02:00
|
|
|
version = "0.13.0.4";
|
|
|
|
sha256 = "0zdb02mj9sbkj51a1q7sl6kmjx51gvps52dwc70qpm3rk71qnp1k";
|
2012-05-20 19:38:03 +02:00
|
|
|
buildDepends = [
|
2012-09-17 16:17:56 +02:00
|
|
|
accelerate binary cryptohash cuda fclabels filepath hashable
|
2013-05-11 15:17:47 +02:00
|
|
|
hashtables languageCQuote mainlandPretty mtl SafeSemaphore srcloc
|
|
|
|
text transformers unorderedContainers
|
2012-05-20 19:38:03 +02:00
|
|
|
];
|
2013-09-02 13:20:16 +02:00
|
|
|
jailbreak = true;
|
2012-05-20 19:38:03 +02:00
|
|
|
meta = {
|
2013-05-11 15:17:47 +02:00
|
|
|
homepage = "https://github.com/AccelerateHS/accelerate-cuda/";
|
2012-05-20 19:38:03 +02:00
|
|
|
description = "Accelerate backend for NVIDIA GPUs";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2012-05-20 22:21:55 +02:00
|
|
|
platforms = self.stdenv.lib.platforms.none;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-05-20 19:38:03 +02:00
|
|
|
};
|
|
|
|
})
|