about summary refs log tree commit diff
path: root/pkgs/applications/science/math/wxmaxima
diff options
context:
space:
mode:
authorxaverdh <xaverdh@users.noreply.github.com>2020-03-11 16:07:53 +0000
committerGitHub <noreply@github.com>2020-03-11 12:07:53 -0400
commit5ac085c3cc690333885b1a142806c3de25f9ece2 (patch)
treea72efb22ccdf41c8dc62b7afd423de74acdeceb8 /pkgs/applications/science/math/wxmaxima
parent51dc1795352b460071121936de0cf97344da27bc (diff)
downloadnixlib-5ac085c3cc690333885b1a142806c3de25f9ece2.tar
nixlib-5ac085c3cc690333885b1a142806c3de25f9ece2.tar.gz
nixlib-5ac085c3cc690333885b1a142806c3de25f9ece2.tar.bz2
nixlib-5ac085c3cc690333885b1a142806c3de25f9ece2.tar.lz
nixlib-5ac085c3cc690333885b1a142806c3de25f9ece2.tar.xz
nixlib-5ac085c3cc690333885b1a142806c3de25f9ece2.tar.zst
nixlib-5ac085c3cc690333885b1a142806c3de25f9ece2.zip
wxmaxima: 18.02.0 -> 20.02.4 (#82323)
The commit description is 18.02.0 -> 20.02.4, because in the last version bump (1c6a193b3ed36dd08e35a7b0ea1d28b72133d6c6), the version string was changed, but the hash was not.

Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
Diffstat (limited to 'pkgs/applications/science/math/wxmaxima')
-rw-r--r--pkgs/applications/science/math/wxmaxima/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/applications/science/math/wxmaxima/default.nix b/pkgs/applications/science/math/wxmaxima/default.nix
index 406d74c4cd34..4d6e4bea34e6 100644
--- a/pkgs/applications/science/math/wxmaxima/default.nix
+++ b/pkgs/applications/science/math/wxmaxima/default.nix
@@ -4,13 +4,13 @@
 
 stdenv.mkDerivation rec {
   pname = "wxmaxima";
-  version = "19.03.0";
+  version = "20.02.4";
 
   src = fetchFromGitHub {
-    owner = "andrejv";
+    owner = "wxMaxima-developers";
     repo = "wxmaxima";
     rev = "Version-${version}";
-    sha256 = "0s7bdykc77slqix28cyaa6x8wvxrn8461mkdgxflvi2apwsl56aa";
+    sha256 = "106a7jrjwfmymzj70nsv44fm3jbxngr8pmkaghhpwy0ln38lhf54";
   };
 
   buildInputs = [ wxGTK maxima gnome3.adwaita-icon-theme ];
@@ -21,12 +21,10 @@ stdenv.mkDerivation rec {
     gappsWrapperArgs+=(--prefix PATH ":" ${maxima}/bin)
   '';
 
-  enableParallelBuilding = true;
-
   meta = with stdenv.lib; {
     description = "Cross platform GUI for the computer algebra system Maxima";
     license = licenses.gpl2;
-    homepage = https://wxmaxima-developers.github.io/wxmaxima/;
+    homepage = "https://wxmaxima-developers.github.io/wxmaxima/";
     platforms = platforms.linux;
     maintainers = [ maintainers.peti ];
   };