9 stdenv.mkDerivation (finalAttrs: {
14 url = "https://www.newlisp.org/downloads/newlisp-${finalAttrs.version}.tgz";
15 hash = "sha256-3C0P9lHCsnW8SvOvi6WYUab7bh6t3CCudftgsekBJuw=";
23 configureScript = "./configure-alt";
26 checkTarget = "testall";
29 description = "Lisp-like, general-purpose scripting language";
31 newLISP is a Lisp-like, general-purpose scripting language. It is
32 especially well-suited for applications in AI, simulation, natural
33 language processing, big data, machine learning and statistics. Because
34 of its small resource requirements, newLISP is excellent for embedded
35 systems applications. Most of the functions you will ever need are
36 already built in. This includes networking functions, support for
37 distributed and multicore processing, and Bayesian statistics.
39 homepage = "https://www.newlisp.org/";
40 downloadPage = "https://www.newlisp.org/downloads/";
41 changelog = "https://www.newlisp.org/downloads/newlisp-${finalAttrs.version}/doc/CHANGES";
42 license = lib.licenses.gpl3Plus;
43 maintainers = with lib.maintainers; [ rc-zb ];
44 mainProgram = "newlisp";
45 platforms = lib.platforms.linux;