summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/cufft/default.nix
blob: df9f686383e11e44cc2e32e21a3ec661494fae29 (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.3";
  sha256 = "1jj1ixacmhwjcb2syv4fglawpya5vmdhdk2xqrw4wwfxw4wc9ypi";
  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.ghc.meta.platforms;
  };
})