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