fftw: 3.3.4 -> 05-06-2016
There has not been a release since 2014, but at least one important bug has been fixed: https://github.com/FFTW/fftw3/issues/16 The submitter of the bug, @x-42, has advised me to upgrade our distro, as the fftw devs are very conservative so this is not bleeding edge code.
This commit is contained in:
parent
d130c27c62
commit
26d1390049
@ -1,24 +1,34 @@
|
|||||||
{ fetchurl, stdenv, lib, precision ? "double" }:
|
{ fetchFromGitHub , stdenv, lib, ocaml, perl, indent, transfig, ghostscript, texinfo, libtool, gettext, automake, autoconf, precision ? "double" }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
assert elem precision [ "single" "double" "long-double" "quad-precision" ];
|
assert elem precision [ "single" "double" "long-double" "quad-precision" ];
|
||||||
|
|
||||||
let version = "3.3.4"; in
|
let version = "05-06-2016"; in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "fftw-${precision}-${version}";
|
name = "fftw-${precision}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "ftp://ftp.fftw.org/pub/fftw/fftw-${version}.tar.gz";
|
owner = "FFTW";
|
||||||
sha256 = "10h9mzjxnwlsjziah4lri85scc05rlajz39nqf3mbh4vja8dw34g";
|
repo = "fftw3";
|
||||||
|
rev = "2ed010c62b1bc8ca6b23bfda2e09b8c28e1e8bcc";
|
||||||
|
sha256 = "1rd1rfdnr2mgli1s7x7z03s26bqf5mrrysvlh028f1dljn7bwd2q";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
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";
|
||||||
|
|
||||||
outputs = [ "dev" "out" "doc" ]; # it's dev-doc only
|
outputs = [ "dev" "out" "doc" ]; # it's dev-doc only
|
||||||
outputBin = "dev"; # fftw-wisdom
|
outputBin = "dev"; # fftw-wisdom
|
||||||
|
|
||||||
configureFlags =
|
configureFlags =
|
||||||
[ "--enable-shared" "--disable-static"
|
[ "--enable-maintainer-mode"
|
||||||
|
"--enable-shared" "--disable-static"
|
||||||
"--enable-threads"
|
"--enable-threads"
|
||||||
]
|
]
|
||||||
++ optional (precision != "double") "--enable-${precision}"
|
++ optional (precision != "double") "--enable-${precision}"
|
||||||
|
Loading…
Reference in New Issue
Block a user