about summary refs log tree commit diff
path: root/pkgs/applications/science/math/wxmaxima
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-08-26 11:53:17 +0000
committerPeter Simons <simons@cryp.to>2010-08-26 11:53:17 +0000
commit2c4c301c9b1c0396319ac98cbd5e857352e5a815 (patch)
treefea2341edbfacc0781defeb62b8eb77ff509d321 /pkgs/applications/science/math/wxmaxima
parent83ae38861eb191a21d491dd1f9f3372a7147dc71 (diff)
downloadnixlib-2c4c301c9b1c0396319ac98cbd5e857352e5a815.tar
nixlib-2c4c301c9b1c0396319ac98cbd5e857352e5a815.tar.gz
nixlib-2c4c301c9b1c0396319ac98cbd5e857352e5a815.tar.bz2
nixlib-2c4c301c9b1c0396319ac98cbd5e857352e5a815.tar.lz
nixlib-2c4c301c9b1c0396319ac98cbd5e857352e5a815.tar.xz
nixlib-2c4c301c9b1c0396319ac98cbd5e857352e5a815.tar.zst
nixlib-2c4c301c9b1c0396319ac98cbd5e857352e5a815.zip
pkgs/applications/science/math/wxmaxima: updated to version 0.8.6
svn path=/nixpkgs/trunk/; revision=23451
Diffstat (limited to 'pkgs/applications/science/math/wxmaxima')
-rw-r--r--pkgs/applications/science/math/wxmaxima/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/applications/science/math/wxmaxima/default.nix b/pkgs/applications/science/math/wxmaxima/default.nix
index 2bd50b7707b4..ece6eb985178 100644
--- a/pkgs/applications/science/math/wxmaxima/default.nix
+++ b/pkgs/applications/science/math/wxmaxima/default.nix
@@ -6,20 +6,23 @@
 
 let
     name    = "wxmaxima";
-    version = "0.8.5";
+    version = "0.8.6";
 in
 stdenv.mkDerivation {
   name = "${name}-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/${name}/wxMaxima-${version}.tar.gz";
-    sha256 = "794317fa2a8d0c2e88c3e5d238c5b81a3e11783ec4a692468b51f15bf5d294f2";
+    sha256 = "09w6gai0jfhl959yrdcdikz5l9kdjshasjk404vl19nfnivdbj9f";
   };
 
   buildInputs = [maxima wxGTK];
 
   meta = {
-    description = "wxWidgets GUI for the computer algebra system Maxima";
+    description = "Cross platform GUI for the computer algebra system Maxima.";
+    license = "GPL2";
     homepage = http://wxmaxima.sourceforge.net;
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = [ stdenv.lib.maintainers.simons ];
   };
 }