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