summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/cufft/default.nix
blob: e9f1fe166bdc8a5eb8c496c9639d4edf4d67ed5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, c2hs, cuda }:

cabal.mkDerivation (self: {
  pname = "cufft";
  version = "0.1.0.1";
  sha256 = "0j1rsixl48z8xszym9s3rw4pwq4s5bz6inqkfsq726gni0nlm8vx";
  buildDepends = [ cuda ];
  buildTools = [ c2hs ];
  meta = {
    homepage = "http://github.com/robeverest/cufft";
    description = "Haskell bindings for the CUFFT library";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.stdenv.lib.platforms.none;
  };
})