summary refs log tree commit diff
path: root/pkgs/development/libraries/fftw/default.nix
blob: 97043f11f50f6432a5bf348fa9f2cf9702423773 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ fetchurl, stdenv, builderDefs, precision ? "double" }:

assert stdenv.lib.elem precision [ "single" "double" "long-double" "quad-precision" ];

with { inherit (stdenv.lib) optional; };

let
  version = "3.3.3";
  localDefs = builderDefs.passthru.function {
    src =
      fetchurl {
        url = "ftp://ftp.fftw.org/pub/fftw/fftw-${version}.tar.gz";
        sha256 = "1wwp9b2va7vkq3ay7a9jk22nr4x5q6m37rzqy2j8y3d11c5grkc5";
      };
    buildInputs = [];
    configureFlags = [
        "--enable-shared" "--disable-static"
        "--enable-threads" "--enable-openmp" # very small wrappers
      ]
      ++ optional (precision != "double") "--enable-${precision}"
      # all x86_64 have sse2
      ++ optional stdenv.isx86_64 "--enable-sse2";
  };

in with localDefs;

stdenv.mkDerivation rec {
  name = "fftw-${precision}-${version}";
  builder = writeScript "${name}-builder"
    (textClosure localDefs [doConfigure doMakeInstall doForceShare]);
  meta = {
    description = "Fastest Fourier Transform in the West library";
  };
  passthru = {
    # Allow instantiating "-A fftw.src"
    inherit src;
  };
}