diff options
| author | Andreas Enge <andreas@enge.fr> | 2025-11-18 17:37:02 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-11-18 17:37:04 +0100 |
| commit | c86a44827aea90e521ca5f2139e338bc9492a947 (patch) | |
| tree | 889808546f9e28a1ab3c79a7a094f5231273a72a | |
| parent | f848fbedaa7f73d22ed07205516aa2c83c9e99d0 (diff) | |
gnu: Remove lush2.
* gnu/packages/lisp.scm (lush2): Delete variable.
Fixes: guix/guix#3620
Change-Id: I88b92d3b22bf966c04330afe8e8f95a1394f9b47
| -rw-r--r-- | gnu/packages/lisp.scm | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index f552161246f..bace6ec9049 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -1029,69 +1029,6 @@ and make for REPLs that start blazing fast. @end itemize\n") (license license:gpl3+))) -(define-public lush2 - (package - (name "lush2") - (version "2.0.1") - (source - (origin - (method url-fetch) - (uri (string-append "mirror://sourceforge/lush/lush2/lush-" - version ".tar.gz")) - (modules '((guix build utils))) - (snippet - '(begin - (substitute* "src/unix.c" - (("\\{ \"LUSH_DATE\", __DATE__ \\},") "") - (("\\{ \"LUSH_TIME\", __TIME__ \\},") "")) - (substitute* "src/main.c" - (("\" \\(built \" __DATE__ \"\\)\"") "")) - #t)) - (sha256 - (base32 - "02pkfn3nqdkm9fm44911dbcz0v3r0l53vygj8xigl6id5g3iwi4k")))) - (build-system gnu-build-system) - (arguments - `(;; We have to add these LIBS so that they are found. - #:configure-flags (list "LIBS=-lz" - "X_EXTRA_LIBS=-lfontconfig" - "--with-x") - #:tests? #f)) ; No make check. - (native-inputs (list intltool)) - (inputs - `(("alsa-lib" ,alsa-lib) - ("sdl" ,sdl) - ("sdl-image" ,sdl-image) - ("sdl-mixer" ,sdl-mixer) - ("sdl-net" ,sdl-net) - ("sdl-ttf" ,sdl-ttf) - ("libxft" ,libxft) - ("fontconfig" ,fontconfig) - ("gsl" ,gsl) - ("openblas" ,openblas) - ("glu" ,glu) - ("mesa" ,mesa) - ("mesa-utils" ,mesa-utils) - ("binutils" ,binutils) - ("libiberty" ,libiberty) - ("readline" ,readline) - ("zlib" ,zlib) - ("gettext-minimal" ,gettext-minimal))) - (synopsis "Lisp Universal Shell") - (description - "Lush is an object-oriented Lisp interpreter/compiler with features -designed to please people who want to prototype large numerical -applications. Lush includes an extensive library of -vector/matrix/tensor manipulation, numerous numerical libraries -(including GSL, LAPACK, and BLAS), a set of graphic functions, a -simple GUI toolkit, and interfaces to various graphic and multimedia -libraries such as OpenGL, SDL, Video4Linux, and ALSA (video/audio -grabbing), and others. Lush is an ideal frontend script language for -programming projects written in C or other languages. Lush also has -libraries for Machine Learning, Neural Nets and statistical estimation.") - (home-page "https://lush.sourceforge.net/") - (license license:lgpl2.1+))) - (define-public picolisp (package (name "picolisp") |
