summary refs log blame commit diff
path: root/pkgs/development/libraries/fftw/default.nix
blob: 3f5d13b09fb944f06027c13067f05a373b91ffe2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                 
                                      







                                                                                                
                          


                                                  
                                                                                 





                                                      
args : with args;
	let localDefs = builderDefs { 
		src = 
			fetchurl {
				url = ftp://ftp.fftw.org/pub/fftw/fftw-3.1.2.tar.gz;
				sha256 = "1gr63hf5vvsg50b2xwqaxwpvs1y9g8l0sb91a38wpvr7zsbjxfg1";
			};
		buildInputs = [];
		configureFlags = ["--enable-float --enable-shared"];
	} null;
	in with localDefs;
stdenv.mkDerivation {
	name = "fftw-3.1.2";
	builder = writeScript "fftw-3.1.2-builder"
		(textClosure localDefs [doConfigure doMakeInstall doForceShare]);
	meta = {
		description = "
	Fastest Fourier Transform in the West library.
";
	};
}