23 lines
837 B
Nix
23 lines
837 B
Nix
{ cabal, accelerate, binary, cryptohash, cuda, fclabels, filepath
|
|
, hashable, hashtables, languageCQuote, mainlandPretty, mtl
|
|
, SafeSemaphore, srcloc, text, transformers, unorderedContainers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "accelerate-cuda";
|
|
version = "0.13.0.3";
|
|
sha256 = "1y0v7w08pywb8qlw0b5aw4f8pkx4bjlfwxpqq2zfqmjsclnlifkb";
|
|
buildDepends = [
|
|
accelerate binary cryptohash cuda fclabels filepath hashable
|
|
hashtables languageCQuote mainlandPretty mtl SafeSemaphore srcloc
|
|
text transformers unorderedContainers
|
|
];
|
|
meta = {
|
|
homepage = "https://github.com/AccelerateHS/accelerate-cuda/";
|
|
description = "Accelerate backend for NVIDIA GPUs";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.stdenv.lib.platforms.none;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|