3
0
Fork 0
forked from mirrors/nixpkgs
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";
2021-11-19 20:06:44 +00:00
version = "1.3.7";
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";
2021-11-19 20:06:44 +00:00
sha256 = "sha256-cOqMvSe3ef/ZeVy5cj/VU/aTRtxgfxZfRbE4lWE5TU4=";
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
};
}