2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchurl, sbcl, libX11, libXpm, libICE, libSM, libXt, libXau, libXdmcp }:
|
2014-01-16 20:25:04 +00:00
|
|
|
|
2022-03-07 11:37:20 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "fricas";
|
2022-07-30 17:58:18 +01:00
|
|
|
version = "1.3.8";
|
2014-01-16 20:25:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-03-07 11:37:20 +00:00
|
|
|
url = "mirror://sourceforge/fricas/fricas/${version}/fricas-${version}-full.tar.bz2";
|
2022-07-30 17:58:18 +01:00
|
|
|
sha256 = "sha256-amAGPLQo70nKATyZM7h3yX5mMUxCwOFwb/fTIWB5hUQ=";
|
2014-01-16 20:25:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ sbcl libX11 libXpm libICE libSM libXt libXau libXdmcp ];
|
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://fricas.sourceforge.net/";
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "An advanced computer algebra system";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.bsd3;
|
2014-01-20 17:20:08 +00:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.sprock ];
|
2014-01-16 20:25:04 +00:00
|
|
|
};
|
|
|
|
}
|