mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
121 lines
3.7 KiB
Nix
121 lines
3.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, fetchpatch
|
|
, texinfo
|
|
, perl
|
|
, python3
|
|
, makeWrapper
|
|
, autoreconfHook
|
|
, rlwrap ? null
|
|
, tk ? null
|
|
, gnuplot ? null
|
|
, lisp-compiler
|
|
}:
|
|
|
|
let
|
|
# Allow to remove some executables from the $PATH of the wrapped binary
|
|
searchPath = lib.makeBinPath
|
|
(lib.filter (x: x != null) [ lisp-compiler rlwrap tk gnuplot ]);
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "maxima";
|
|
version = "5.47.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/maxima/maxima-${finalAttrs.version}.tar.gz";
|
|
sha256 = "sha256-kQQCGyT9U+jAOpg1CctC6TepJejAyFwzXXcJoU/UD3o=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
lisp-compiler
|
|
makeWrapper
|
|
python3
|
|
texinfo
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
nativeCheckInputs = [
|
|
gnuplot
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace doc/info/Makefile.am --replace "/usr/bin/env perl" "${perl}/bin/perl"
|
|
'';
|
|
|
|
postInstall = ''
|
|
# Make sure that maxima can find its runtime dependencies.
|
|
for prog in "$out/bin/"*; do
|
|
wrapProgram "$prog" --prefix PATH ":" "$out/bin:${searchPath}"
|
|
done
|
|
# Move emacs modules and documentation into the right place.
|
|
mkdir -p $out/share/emacs $out/share/doc
|
|
ln -s ../maxima/${finalAttrs.version}/emacs $out/share/emacs/site-lisp
|
|
ln -s ../maxima/${finalAttrs.version}/doc $out/share/doc/maxima
|
|
''
|
|
+ (lib.optionalString (lisp-compiler.pname == "ecl") ''
|
|
cp src/binary-ecl/maxima.fas* "$out/lib/maxima/${finalAttrs.version}/binary-ecl/"
|
|
'')
|
|
;
|
|
|
|
patches = [
|
|
# fix path to info dir (see https://trac.sagemath.org/ticket/11348)
|
|
(fetchpatch {
|
|
url = "https://raw.githubusercontent.com/sagemath/sage/07d6c37d18811e2b377a9689790a7c5e24da16ba/build/pkgs/maxima/patches/infodir.patch";
|
|
sha256 = "09v64n60f7i6frzryrj0zd056lvdpms3ajky4f9p6kankhbiv21x";
|
|
})
|
|
|
|
# fix https://sourceforge.net/p/maxima/bugs/2596/
|
|
(fetchpatch {
|
|
url = "https://raw.githubusercontent.com/sagemath/sage/07d6c37d18811e2b377a9689790a7c5e24da16ba/build/pkgs/maxima/patches/matrixexp.patch";
|
|
sha256 = "06961hn66rhjijfvyym21h39wk98sfxhp051da6gz0n9byhwc6zg";
|
|
})
|
|
|
|
# undo https://sourceforge.net/p/maxima/code/ci/f5e9b0f7eb122c4e48ea9df144dd57221e5ea0ca
|
|
# see https://trac.sagemath.org/ticket/13364#comment:93
|
|
(fetchpatch {
|
|
url = "https://raw.githubusercontent.com/sagemath/sage/07d6c37d18811e2b377a9689790a7c5e24da16ba/build/pkgs/maxima/patches/undoing_true_false_printing_patch.patch";
|
|
sha256 = "0fvi3rcjv6743sqsbgdzazy9jb6r1p1yq63zyj9fx42wd1hgf7yx";
|
|
})
|
|
|
|
./5.47.0-CVE-2024-34490.patch
|
|
];
|
|
|
|
# The test suite is disabled since 5.42.2 because of the following issues:
|
|
#
|
|
# Error(s) found:
|
|
# /build/maxima-5.44.0/share/linearalgebra/rtest_matrixexp.mac problems:
|
|
# (20 21 22)
|
|
# Tests that were expected to fail but passed:
|
|
# /build/maxima-5.44.0/share/vector/rtest_vect.mac problem:
|
|
# (19)
|
|
# 3 tests failed out of 16,184 total tests.
|
|
#
|
|
# These failures don't look serious. It would be nice to fix them, but I
|
|
# don't know how and probably won't have the time to find out.
|
|
doCheck = false; # try to re-enable after next version update
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
inherit lisp-compiler;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Computer algebra system";
|
|
homepage = "http://maxima.sourceforge.net";
|
|
license = licenses.gpl2Plus;
|
|
|
|
longDescription = ''
|
|
Maxima is a fairly complete computer algebra system written in
|
|
lisp with an emphasis on symbolic computation. It is based on
|
|
DOE-MACSYMA and licensed under the GPL. Its abilities include
|
|
symbolic integration, 3D plotting, and an ODE solver.
|
|
'';
|
|
maintainers = with maintainers; [ doronbehar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|