58f3a6e25e
- accelerate-cuda: updated to version 0.12.1.0 - accelerate-examples: updated to version 0.12.1.0 - accelerate-io: updated to version 0.12.1.0 - accelerate: updated to version 0.12.1.0 - hakyll: updated to version 3.3.0.1 - pandoc: updated to version 1.9.4.1 - Vec: updated to version 0.9.9 svn path=/nixpkgs/trunk/; revision=34431
23 lines
828 B
Nix
23 lines
828 B
Nix
{ cabal, accelerate, binary, blazeBuilder, cryptohash, cuda
|
|
, fclabels, filepath, hashable, hashtables, languageCQuote
|
|
, mainlandPretty, mtl, srcloc, transformers, unorderedContainers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "accelerate-cuda";
|
|
version = "0.12.1.0";
|
|
sha256 = "1y6viivizv4frdh3xk5wqhs7wwnhqyjr9wid1y1d5l42mz41vp84";
|
|
buildDepends = [
|
|
accelerate binary blazeBuilder cryptohash cuda fclabels filepath
|
|
hashable hashtables languageCQuote mainlandPretty mtl srcloc
|
|
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;
|
|
platforms = self.stdenv.lib.platforms.none;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|