summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/science/math/wxmaxima/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/science/math/wxmaxima/default.nix')
-rw-r--r--pkgs/applications/science/math/wxmaxima/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/wxmaxima/default.nix b/pkgs/applications/science/math/wxmaxima/default.nix
index aea24b84d1d4..205fe3ebed5d 100644
--- a/pkgs/applications/science/math/wxmaxima/default.nix
+++ b/pkgs/applications/science/math/wxmaxima/default.nix
@@ -7,17 +7,18 @@
, maxima
, wxGTK
, gnome
+, glib
}:
stdenv.mkDerivation rec {
pname = "wxmaxima";
- version = "22.05.0";
+ version = "22.12.0";
src = fetchFromGitHub {
owner = "wxMaxima-developers";
repo = "wxmaxima";
rev = "Version-${version}";
- sha256 = "sha256-pcKnEjJmvMXCBpjtOSLyl4I0x3fjh0os9Sdp39I2Re0=";
+ sha256 = "sha256-RT6y4M6LQD1fXJcjtdSXnDmoJvv160g2asdV4WtTcok=";
};
buildInputs = [
@@ -25,6 +26,8 @@ stdenv.mkDerivation rec {
maxima
# So it won't embed svg files into headers.
gnome.adwaita-icon-theme
+ # So it won't crash under Sway.
+ glib
];
nativeBuildInputs = [
@@ -33,6 +36,10 @@ stdenv.mkDerivation rec {
gettext
];
+ cmakeFlags = [
+ "-DwxWidgets_LIBRARIES=${wxGTK}/lib"
+ ];
+
preConfigure = ''
gappsWrapperArgs+=(--prefix PATH ":" ${maxima}/bin)
'';