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

28 lines
698 B
Nix
Raw Normal View History

2021-01-15 14:21:58 +01:00
{ lib, stdenv, fetchurl, sbcl, libX11, libXpm, libICE, libSM, libXt, libXau, libXdmcp }:
2014-01-16 21:25:04 +01:00
2017-03-03 02:39:55 +01:00
let
2021-11-19 21:06:44 +01:00
version = "1.3.7";
2017-03-03 02:39:55 +01:00
name = "fricas-" + version;
in
stdenv.mkDerivation {
inherit name;
2014-01-16 21:25:04 +01:00
src = fetchurl {
2021-11-19 21:06:44 +01:00
url = "mirror://sourceforge/fricas/fricas/${version}/${name}-full.tar.bz2";
sha256 = "sha256-cOqMvSe3ef/ZeVy5cj/VU/aTRtxgfxZfRbE4lWE5TU4=";
2014-01-16 21:25:04 +01: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 14:21:58 +01:00
license = lib.licenses.bsd3;
2014-01-20 18:20:08 +01:00
2021-01-15 14:21:58 +01:00
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.sprock ];
2014-01-16 21:25:04 +01:00
};
}