Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
wrapGAppsHook3,
|
|
cmake,
|
|
gettext,
|
|
maxima,
|
|
wxGTK,
|
|
adwaita-icon-theme,
|
|
glib,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "wxmaxima";
|
|
version = "25.04.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wxMaxima-developers";
|
|
repo = "wxmaxima";
|
|
rev = "Version-${finalAttrs.version}";
|
|
hash = "sha256-AEy2a8BahV1yH67RIjcsVipuo5eUZcQZxR3HygSYGlU=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
})
|