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