about summary refs log tree commit diff
path: root/pkgs/applications/science/math/wxmaxima
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-12-29 20:57:12 +0000
committerOrivej Desh <orivej@gmx.fr>2017-12-29 21:00:03 +0000
commit77cc63950a034de3b58bd718f30ebf122e5f137f (patch)
tree93066440ba773e07a23c9335551777f0465cf6e4 /pkgs/applications/science/math/wxmaxima
parent52a4a7c3bbb5c60804f232f1f2f74e806632cfa0 (diff)
downloadnixlib-77cc63950a034de3b58bd718f30ebf122e5f137f.tar
nixlib-77cc63950a034de3b58bd718f30ebf122e5f137f.tar.gz
nixlib-77cc63950a034de3b58bd718f30ebf122e5f137f.tar.bz2
nixlib-77cc63950a034de3b58bd718f30ebf122e5f137f.tar.lz
nixlib-77cc63950a034de3b58bd718f30ebf122e5f137f.tar.xz
nixlib-77cc63950a034de3b58bd718f30ebf122e5f137f.tar.zst
nixlib-77cc63950a034de3b58bd718f30ebf122e5f137f.zip
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.)
Diffstat (limited to 'pkgs/applications/science/math/wxmaxima')
-rw-r--r--pkgs/applications/science/math/wxmaxima/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/applications/science/math/wxmaxima/default.nix b/pkgs/applications/science/math/wxmaxima/default.nix
index 6c866a8d2164..c7f74071c24f 100644
--- a/pkgs/applications/science/math/wxmaxima/default.nix
+++ b/pkgs/applications/science/math/wxmaxima/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchFromGitHub
-, wrapGAppsHook, autoreconfHook, gettext
+, wrapGAppsHook, cmake, gettext
 , maxima, wxGTK, gnome3 }:
 
 stdenv.mkDerivation rec {
@@ -15,14 +15,12 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ wxGTK maxima gnome3.defaultIconTheme ];
 
-  nativeBuildInputs = [ wrapGAppsHook autoreconfHook gettext ];
+  nativeBuildInputs = [ wrapGAppsHook cmake gettext ];
 
   preConfigure = ''
     gappsWrapperArgs+=(--prefix PATH ":" ${maxima}/bin)
   '';
 
-  doCheck = true;
-
   enableParallelBuilding = true;
 
   meta = with stdenv.lib; {