ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, wrapGAppsHook3
|
|
, cmake
|
|
, gettext
|
|
, maxima
|
|
, wxGTK
|
|
, adwaita-icon-theme
|
|
, glib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs:{
|
|
pname = "wxmaxima";
|
|
version = "24.08.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wxMaxima-developers";
|
|
repo = "wxmaxima";
|
|
rev = "Version-${finalAttrs.version}";
|
|
hash = "sha256-W9sZlCPi+pz37OQoICnRGQR2hoe/UciMN6NIzDgHNPQ=";
|
|
};
|
|
|
|
buildInputs = [
|
|
wxGTK
|
|
maxima
|
|
# So it won't embed svg files into headers.
|
|
adwaita-icon-theme
|
|
# So it won't crash under Sway.
|
|
glib
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook3
|
|
cmake
|
|
gettext
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DwxWidgets_LIBRARIES=${wxGTK}/lib"
|
|
];
|
|
|
|
preConfigure = ''
|
|
gappsWrapperArgs+=(--prefix PATH ":" ${maxima}/bin)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Cross platform GUI for the computer algebra system Maxima";
|
|
mainProgram = "wxmaxima";
|
|
license = licenses.gpl2;
|
|
homepage = "https://wxmaxima-developers.github.io/wxmaxima/";
|
|
maintainers = with maintainers; [ doronbehar ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|