2009-10-29 12:57:58 +01:00
|
|
|
{ stdenv, fetchurl, maxima, wxGTK }:
|
|
|
|
|
2009-10-29 13:53:22 +01:00
|
|
|
# TODO: Build the correct ${maxima}/bin/maxima store path into wxMaxima so that
|
|
|
|
# it can run that binary without relying on $PATH, /etc/wxMaxima.conf, or
|
|
|
|
# ~/.wxMaxima.
|
|
|
|
|
2009-10-29 12:57:58 +01:00
|
|
|
let
|
|
|
|
name = "wxmaxima";
|
2010-05-05 12:26:15 +02:00
|
|
|
version = "0.8.5";
|
2009-10-29 12:57:58 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "${name}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/${name}/wxMaxima-${version}.tar.gz";
|
2010-05-05 12:26:15 +02:00
|
|
|
sha256 = "794317fa2a8d0c2e88c3e5d238c5b81a3e11783ec4a692468b51f15bf5d294f2";
|
2009-10-29 12:57:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [maxima wxGTK];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "wxWidgets GUI for the computer algebra system Maxima";
|
|
|
|
homepage = http://wxmaxima.sourceforge.net;
|
|
|
|
};
|
|
|
|
}
|