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
912 B
Nix
57 lines
912 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
sbcl,
|
|
libX11,
|
|
libXpm,
|
|
libICE,
|
|
libSM,
|
|
libXt,
|
|
libXau,
|
|
libXdmcp,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fricas";
|
|
version = "1.3.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fricas";
|
|
repo = "fricas";
|
|
rev = version;
|
|
sha256 = "sha256-GUGJR65K1bPC0D36l4Yyj3GOsWtUrSKLu6JnlfjHzDc=";
|
|
};
|
|
|
|
buildInputs = [
|
|
sbcl
|
|
libX11
|
|
libXpm
|
|
libICE
|
|
libSM
|
|
libXt
|
|
libXau
|
|
libXdmcp
|
|
];
|
|
|
|
# Remove when updating to next version
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
|
|
./configure --prefix=$out --with-lisp='sbcl --dynamic-space-size 3072'
|
|
|
|
runHook postConfigure
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|