2018-08-08 20:30:43 +02:00
|
|
|
{ fetchurl, stdenv, lib, precision ? "double", perl }:
|
2014-07-15 23:01:11 +02:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
assert elem precision [ "single" "double" "long-double" "quad-precision" ];
|
2014-01-01 11:51:56 +01:00
|
|
|
|
2017-08-20 10:40:51 +02:00
|
|
|
let
|
2018-05-31 19:59:26 +02:00
|
|
|
version = "3.3.8";
|
2017-08-20 10:40:51 +02:00
|
|
|
withDoc = stdenv.cc.isGNU;
|
|
|
|
in
|
2014-01-01 11:51:56 +01:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2014-01-01 11:51:56 +01:00
|
|
|
name = "fftw-${precision}-${version}";
|
2014-07-15 23:01:11 +02:00
|
|
|
|
2016-08-24 13:35:30 +02:00
|
|
|
src = fetchurl {
|
2018-06-10 01:18:16 +02:00
|
|
|
urls = [
|
|
|
|
"http://fftw.org/fftw-${version}.tar.gz"
|
|
|
|
"ftp://ftp.fftw.org/pub/fftw/fftw-${version}.tar.gz"
|
|
|
|
];
|
2018-05-31 19:59:26 +02:00
|
|
|
sha256 = "00z3k8fq561wq2khssqg0kallk0504dzlx989x3vvicjdqpjc4v1";
|
2014-07-15 23:01:11 +02:00
|
|
|
};
|
|
|
|
|
2017-08-20 10:40:51 +02:00
|
|
|
outputs = [ "out" "dev" "man" ]
|
|
|
|
++ optional withDoc "info"; # it's dev-doc only
|
2015-10-06 17:00:31 +02:00
|
|
|
outputBin = "dev"; # fftw-wisdom
|
|
|
|
|
2014-07-15 23:01:11 +02:00
|
|
|
configureFlags =
|
2016-08-24 13:35:30 +02:00
|
|
|
[ "--enable-shared" "--disable-static"
|
2015-03-27 06:03:11 +01:00
|
|
|
"--enable-threads"
|
2014-07-15 23:01:11 +02:00
|
|
|
]
|
|
|
|
++ optional (precision != "double") "--enable-${precision}"
|
|
|
|
# all x86_64 have sse2
|
2015-11-30 17:18:57 +01:00
|
|
|
# however, not all float sizes fit
|
|
|
|
++ optional (stdenv.isx86_64 && (precision == "single" || precision == "double") ) "--enable-sse2"
|
2018-01-31 01:03:17 +01:00
|
|
|
++ optional (stdenv.cc.isGNU && !stdenv.hostPlatform.isMusl) "--enable-openmp"
|
2016-08-21 06:59:31 +02:00
|
|
|
# doc generation causes Fortran wrapper generation which hard-codes gcc
|
2017-08-20 10:40:51 +02:00
|
|
|
++ optional (!withDoc) "--disable-doc";
|
2014-07-15 23:01:11 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-08-08 20:30:43 +02:00
|
|
|
checkInputs = [ perl ];
|
|
|
|
|
2015-03-27 06:03:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-06-24 18:43:42 +02:00
|
|
|
description = "Fastest Fourier Transform in the West library";
|
2014-07-15 23:01:11 +02:00
|
|
|
homepage = http://www.fftw.org/;
|
2015-03-27 06:03:11 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.spwhitt ];
|
|
|
|
platforms = platforms.unix;
|
2010-06-24 18:43:42 +02:00
|
|
|
};
|
2007-10-29 11:52:04 +01:00
|
|
|
}
|