5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
24 lines
680 B
Nix
24 lines
680 B
Nix
{ lib, stdenv, fetchurl, sbcl, libX11, libXpm, libICE, libSM, libXt, libXau, libXdmcp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fricas";
|
|
version = "1.3.9";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/fricas/fricas/${version}/fricas-${version}-full.tar.bz2";
|
|
sha256 = "sha256-5RPcffM0GN0l6r8IgHJlwdxwwp2y4kIdJ5M3JnGZCzc=";
|
|
};
|
|
|
|
buildInputs = [ sbcl libX11 libXpm libICE libSM libXt libXau libXdmcp ];
|
|
|
|
dontStrip = true;
|
|
|
|
meta = {
|
|
homepage = "https://fricas.sourceforge.net/";
|
|
description = "An advanced computer algebra system";
|
|
license = lib.licenses.bsd3;
|
|
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.sprock ];
|
|
};
|
|
}
|