guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 7eaa64ed00aac89e5982c7e9a235eea93c3c4767
Author: Andreas Enge <[email protected]>
AuthorDate: Tue Nov 18 17:42:57 2025 +0100
gnu: Remove librep.
* gnu/packages/sawfish.scm (librep): Delete variable.
Change-Id: I0b4c295bfcce50480cac86c10a40231ccd743de5
---
gnu/packages/sawfish.scm | 31 -------------------------------
1 file changed, 31 deletions(-)
diff --git a/gnu/packages/sawfish.scm b/gnu/packages/sawfish.scm
index 61ae059d50..a34d8daf8d 100644
--- a/gnu/packages/sawfish.scm
+++ b/gnu/packages/sawfish.scm
@@ -39,34 +39,3 @@
#:use-module (gnu packages texinfo)
#:use-module (gnu packages base)
#:use-module (gnu packages xorg))
-
-(define-public librep
- (package
- (name "librep")
- (version "0.92.7")
- (source (origin
- (method url-fetch)
- (uri (string-append "http://download.tuxfamily.org/librep/"
- "librep_" version ".tar.xz"))
- (sha256
- (base32
- "1bmcjl1x1rdh514q9z3hzyjmjmwwwkziipjpjsl301bwmiwrd8a8"))))
- (build-system gnu-build-system)
- (native-inputs
- (list texinfo pkg-config autoconf automake libtool))
- (inputs
- (list gdbm gmp libffi readline))
- (native-search-paths
- (list (search-path-specification
- (variable "REP_DL_LOAD_PATH")
- (files '("lib/rep")))))
- (home-page "https://sawfish.fandom.com/wiki/Librep")
- (synopsis "Lisp system for sawfish")
- (description
- "Librep is a dialect of Lisp, designed to be used both as an extension
-language for applications and as a general purpose programming language. It
-was originally written to be mostly-compatible with Emacs Lisp, but has
-subsequently diverged markedly. Its aim is to combine the best features of
-Scheme and Common Lisp and provide an environment that is comfortable for
-implementing both small and large scale systems.")
- (license gpl2+)))