pnfft: init at 1.0.7-alpha
This commit is contained in:
parent
08a19db87f
commit
1bb7e6e5d3
1 changed files with 53 additions and 0 deletions
53
pkgs/by-name/pn/pnfft/package.nix
Normal file
53
pkgs/by-name/pn/pnfft/package.nix
Normal file
|
@ -0,0 +1,53 @@
|
|||
{ autoreconfHook
|
||||
, fetchurl
|
||||
, fftwMpi
|
||||
, gsl
|
||||
, lib
|
||||
, llvmPackages
|
||||
, pfft
|
||||
, precision ? "double"
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
assert lib.elem precision [ "single" "double" "long-double" ];
|
||||
|
||||
let
|
||||
fftw' = fftwMpi.override { inherit precision; };
|
||||
pfft' = pfft.override { inherit precision; };
|
||||
in
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "pnfft-${precision}";
|
||||
version = "1.0.7-alpha";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www-user.tu-chemnitz.de/~potts/workgroup/pippig/software/pnfft-${finalAttrs.version}.tar.gz";
|
||||
hash = "sha256-/aVY/1fuMRl1Q2O7bmc5M4aA0taGD+fcQgCdhVYr1no=";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
preConfigure = ''
|
||||
export FCFLAGS="-I${lib.getDev fftw'}/include -I${lib.getDev pfft'}/include"
|
||||
'';
|
||||
|
||||
configureFlags = [
|
||||
"--enable-threads"
|
||||
"--enable-portable-binary"
|
||||
] ++ lib.optional (precision != "double") "--enable-${precision}";
|
||||
|
||||
buildInputs = [ gsl ] ++ lib.optional stdenv.cc.isClang llvmPackages.openmp;
|
||||
|
||||
propagatedBuildInputs = [ pfft' ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "Parallel nonequispaced fast Fourier transforms";
|
||||
homepage = "https://www-user.tu-chemnitz.de/~potts/workgroup/pippig/software.php.en#pnfft";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ hmenke ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue