From 77cc63950a034de3b58bd718f30ebf122e5f137f Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Fri, 29 Dec 2017 20:57:12 +0000 Subject: [PATCH] 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.) --- pkgs/applications/science/math/wxmaxima/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/science/math/wxmaxima/default.nix b/pkgs/applications/science/math/wxmaxima/default.nix index 6c866a8d216..c7f74071c24 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; {