wxmaxima: build with cmake

Fixes reported version number: see
https://github.com/NixOS/nixpkgs/pull/31657#issuecomment-354414642

"make check" did not run any tests with autotools, and is not defined with
cmake. ("make test" is not defined too.)

+2 -4
+2 -4
pkgs/applications/science/math/wxmaxima/default.nix
··· 1 { stdenv, fetchFromGitHub 2 - , wrapGAppsHook, autoreconfHook, gettext 3 , maxima, wxGTK, gnome3 }: 4 5 stdenv.mkDerivation rec { ··· 15 16 buildInputs = [ wxGTK maxima gnome3.defaultIconTheme ]; 17 18 - nativeBuildInputs = [ wrapGAppsHook autoreconfHook gettext ]; 19 20 preConfigure = '' 21 gappsWrapperArgs+=(--prefix PATH ":" ${maxima}/bin) 22 ''; 23 - 24 - doCheck = true; 25 26 enableParallelBuilding = true; 27
··· 1 { stdenv, fetchFromGitHub 2 + , wrapGAppsHook, cmake, gettext 3 , maxima, wxGTK, gnome3 }: 4 5 stdenv.mkDerivation rec { ··· 15 16 buildInputs = [ wxGTK maxima gnome3.defaultIconTheme ]; 17 18 + nativeBuildInputs = [ wrapGAppsHook cmake gettext ]; 19 20 preConfigure = '' 21 gappsWrapperArgs+=(--prefix PATH ":" ${maxima}/bin) 22 ''; 23 24 enableParallelBuilding = true; 25