Adding qtpfsgui and pfstools. Updating fftw because the src URL didn't work anymore.
svn path=/nixpkgs/trunk/; revision=14892
This commit is contained in:
@@ -2,8 +2,8 @@ args : with args;
|
||||
let localDefs = builderDefs.passthru.function {
|
||||
src =
|
||||
fetchurl {
|
||||
url = ftp://ftp.fftw.org/pub/fftw/fftw-3.1.2.tar.gz;
|
||||
sha256 = "1gr63hf5vvsg50b2xwqaxwpvs1y9g8l0sb91a38wpvr7zsbjxfg1";
|
||||
url = ftp://ftp.fftw.org/pub/fftw/fftw-3.2.1.tar.gz;
|
||||
sha256 = "1x8jww3vflrgzjrpnnsk0020bkd9aqmfga8y31v10cqd02l46sh7";
|
||||
};
|
||||
buildInputs = [];
|
||||
configureFlags = ["--enable-shared"]
|
||||
@@ -13,8 +13,8 @@ args : with args;
|
||||
};
|
||||
in with localDefs;
|
||||
stdenv.mkDerivation {
|
||||
name = "fftw-3.1.2" + ( if args.singlePrecision then "-single" else "-float" );
|
||||
builder = writeScript "fftw-3.1.2-builder"
|
||||
name = "fftw-3.2.1" + ( if args.singlePrecision then "-single" else "-float" );
|
||||
builder = writeScript "fftw-3.2.1-builder"
|
||||
(textClosure localDefs [doConfigure doMakeInstall doForceShare]);
|
||||
meta = {
|
||||
description = "Fastest Fourier Transform in the West library";
|
||||
|
||||
Reference in New Issue
Block a user