summary refs log tree commit diff
path: root/pkgs/development/libraries/fftw
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-08-08 18:30:43 +0000
committerJan Malakhovski <oxij@oxij.org>2018-08-11 09:35:27 +0000
commitcca7c9f78eabb4d5a74b6ad34d2db2ff2945e424 (patch)
tree14a4f42da14e0c2768eba97ec0ced1d8dfdceeae /pkgs/development/libraries/fftw
parent17c660f54647874b91b16860917ddc301743dfef (diff)
downloadnixpkgs-cca7c9f78eabb4d5a74b6ad34d2db2ff2945e424.tar
nixpkgs-cca7c9f78eabb4d5a74b6ad34d2db2ff2945e424.tar.gz
nixpkgs-cca7c9f78eabb4d5a74b6ad34d2db2ff2945e424.tar.bz2
nixpkgs-cca7c9f78eabb4d5a74b6ad34d2db2ff2945e424.tar.lz
nixpkgs-cca7c9f78eabb4d5a74b6ad34d2db2ff2945e424.tar.xz
nixpkgs-cca7c9f78eabb4d5a74b6ad34d2db2ff2945e424.tar.zst
nixpkgs-cca7c9f78eabb4d5a74b6ad34d2db2ff2945e424.zip
fftw: use checkInputs, fix tests
Diffstat (limited to 'pkgs/development/libraries/fftw')
-rw-r--r--pkgs/development/libraries/fftw/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/libraries/fftw/default.nix b/pkgs/development/libraries/fftw/default.nix
index 12b30cf0349..bc5de5f9730 100644
--- a/pkgs/development/libraries/fftw/default.nix
+++ b/pkgs/development/libraries/fftw/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, lib, precision ? "double" }:
+{ fetchurl, stdenv, lib, precision ? "double", perl }:
 
 with lib;
 
@@ -38,6 +38,8 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
+  checkInputs = [ perl ];
+
   meta = with stdenv.lib; {
     description = "Fastest Fourier Transform in the West library";
     homepage = http://www.fftw.org/;