Skip to content

Commit

Permalink
wxmaxima: build with cmake
Browse files Browse the repository at this point in the history
Fixes reported version number: see
#31657 (comment)

"make check" did not run any tests with autotools, and is not defined with
cmake. ("make test" is not defined too.)
  • Loading branch information
orivej committed Dec 29, 2017
1 parent 52a4a7c commit 77cc639
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions 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 {
Expand All @@ -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; {
Expand Down

0 comments on commit 77cc639

Please sign in to comment.