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

28 lines
733 B
Nix
Raw Normal View History

2014-01-16 20:25:04 +00:00
{ stdenv, fetchurl, sbcl, libX11, libXpm, libICE, libSM, libXt, libXau, libXdmcp }:
2017-03-03 01:39:55 +00:00
let
version = "1.3.4";
2017-03-03 01:39:55 +00:00
name = "fricas-" + version;
in
stdenv.mkDerivation {
inherit name;
2014-01-16 20:25:04 +00:00
src = fetchurl {
2017-03-03 01:39:55 +00:00
url = "http://sourceforge.net/projects/fricas/files/fricas/${version}/${name}-full.tar.bz2";
sha256 = "156k9az1623y5808j845c56z2nvvdrm48dzg1v0ivpplyl7vp57x";
2014-01-16 20:25:04 +00:00
};
buildInputs = [ sbcl libX11 libXpm libICE libSM libXt libXau libXdmcp ];
dontStrip = true;
meta = {
2014-01-20 17:20:08 +00:00
homepage = http://fricas.sourceforge.net/;
description = "An advanced computer algebra system";
2014-01-20 17:20:08 +00:00
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.sprock ];
2014-01-16 20:25:04 +00:00
};
}