bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
31 lines
802 B
Nix
31 lines
802 B
Nix
{ lib, stdenv, fetchFromGitHub, sbcl, libX11, libXpm, libICE, libSM, libXt, libXau, libXdmcp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fricas";
|
|
version = "1.3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fricas";
|
|
repo = "fricas";
|
|
rev = version;
|
|
sha256 = "sha256-T1xDndDnHq/hmhTWWO3Eu0733u8+C8sJMCF6pbLU2GI=";
|
|
};
|
|
|
|
buildInputs = [ sbcl libX11 libXpm libICE libSM libXt libXau libXdmcp ];
|
|
|
|
# Remove when updating to next version
|
|
configurePhase = ''
|
|
./configure --prefix=$out --with-lisp='sbcl --dynamic-space-size 3072'
|
|
'';
|
|
|
|
dontStrip = true;
|
|
|
|
meta = {
|
|
homepage = "https://fricas.github.io";
|
|
description = "Advanced computer algebra system";
|
|
license = lib.licenses.bsd3;
|
|
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.sprock ];
|
|
};
|
|
}
|