2016-08-15 23:05:52 +00:00
|
|
|
{ fetchFromGitHub , stdenv, lib, ocaml, perl, indent, transfig, ghostscript, texinfo, libtool, gettext, automake, autoconf, precision ? "double" }:
|
2014-07-15 21:01:11 +00:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
assert elem precision [ "single" "double" "long-double" "quad-precision" ];
|
2014-01-01 10:51:56 +00:00
|
|
|
|
2016-08-15 23:05:52 +00:00
|
|
|
let version = "3.3.5-rc1"; in
|
2014-01-01 10:51:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "fftw-${precision}-${version}";
|
2014-07-15 21:01:11 +00:00
|
|
|
|
2016-08-15 23:05:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "FFTW";
|
|
|
|
repo = "fftw3";
|
|
|
|
rev = "fftw-${version}";
|
|
|
|
sha256 = "1gc57xvdqbapq30ylj3fxwkv61la4kzyf7ji0q0xqjwpji2ynqi4";
|
2014-07-15 21:01:11 +00:00
|
|
|
};
|
|
|
|
|
2016-08-15 23:05:52 +00:00
|
|
|
nativeBuildInputs = [ ocaml perl indent transfig ghostscript texinfo libtool gettext automake autoconf ];
|
|
|
|
|
|
|
|
# remove the ./configure lines, so we can use nix's configureFlags
|
|
|
|
patchPhase = "sed -e '27,29d' -i bootstrap.sh";
|
|
|
|
|
|
|
|
preConfigurePhases = "./bootstrap.sh";
|
|
|
|
|
2015-10-06 15:00:31 +00:00
|
|
|
outputs = [ "dev" "out" "doc" ]; # it's dev-doc only
|
|
|
|
outputBin = "dev"; # fftw-wisdom
|
|
|
|
|
2014-07-15 21:01:11 +00:00
|
|
|
configureFlags =
|
2016-08-15 23:05:52 +00:00
|
|
|
[ "--enable-maintainer-mode"
|
|
|
|
"--enable-shared" "--disable-static"
|
2015-03-27 05:03:11 +00:00
|
|
|
"--enable-threads"
|
2014-07-15 21:01:11 +00: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"
|
2016-08-21 04:59:31 +00:00
|
|
|
++ optional stdenv.cc.isGNU "--enable-openmp"
|
|
|
|
# doc generation causes Fortran wrapper generation which hard-codes gcc
|
|
|
|
++ optional (!stdenv.cc.isGNU) "--disable-doc";
|
2014-07-15 21:01:11 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-03-27 05:03:11 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-06-24 16:43:42 +00:00
|
|
|
description = "Fastest Fourier Transform in the West library";
|
2014-07-15 21:01:11 +00: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 16:43:42 +00:00
|
|
|
};
|
2007-10-29 10:52:04 +00:00
|
|
|
}
|