maxima,maxima-ecl: migrate derivation to by-name, migrate override (#503378)

This commit is contained in:
Doron Behar
2026-05-12 16:37:50 +00:00
committed by GitHub
4 changed files with 19 additions and 8 deletions
+17
View File
@@ -0,0 +1,17 @@
{
maxima,
ecl,
lisp-compiler ? ecl,
...
}@args:
maxima.override (
{
inherit lisp-compiler;
}
// removeAttrs args [
"maxima"
"ecl"
"lisp-compiler"
]
)
@@ -8,10 +8,11 @@
python3,
makeWrapper,
autoreconfHook,
sbcl,
rlwrap ? null,
tk ? null,
gnuplot ? null,
lisp-compiler,
lisp-compiler ? sbcl,
}:
let
-7
View File
@@ -11579,13 +11579,6 @@ with pkgs;
gap-full = lowPrio (gap.override { packageSet = "full"; });
maxima = callPackage ../applications/science/math/maxima {
lisp-compiler = sbcl;
};
maxima-ecl = maxima.override {
lisp-compiler = ecl;
};
### SCIENCE / MISC
boinc-headless = boinc.override { headless = true; };