nixpkgs/pkgs/applications/science/math/fricas/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
679 B
Nix
Raw Normal View History

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 = {
homepage = "http://fricas.sourceforge.net/";
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
};
}