2024-06-05 15:53:02 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, sbcl, libX11, libXpm, libICE, libSM, libXt, libXau, libXdmcp }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "fricas";
|
2024-06-05 15:53:02 +00:00
|
|
|
version = "1.3.10";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fricas";
|
|
|
|
repo = "fricas";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-T1xDndDnHq/hmhTWWO3Eu0733u8+C8sJMCF6pbLU2GI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ sbcl libX11 libXpm libICE libSM libXt libXau libXdmcp ];
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
# Remove when updating to next version
|
|
|
|
configurePhase = ''
|
|
|
|
./configure --prefix=$out --with-lisp='sbcl --dynamic-space-size 3072'
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
meta = {
|
2024-06-05 15:53:02 +00:00
|
|
|
homepage = "https://fricas.github.io";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Advanced computer algebra system";
|
2021-01-17 00:15:33 +00:00
|
|
|
license = lib.licenses.bsd3;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-17 00:15:33 +00:00
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.sprock ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|