From 68381dfd48c6278672c44d3f2c8c208e6ff217b4 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Tue, 18 Nov 2025 17:42:40 +0100 Subject: [PATCH] gnu: Remove rep-gtk. * gnu/packages/sawfish.scm (rep-gtk): Delete variable. Change-Id: Ibb10280c525fb898e890aaf958a83723303b515b --- gnu/packages/sawfish.scm | 42 ---------------------------------------- 1 file changed, 42 deletions(-) diff --git a/gnu/packages/sawfish.scm b/gnu/packages/sawfish.scm index 03e4fbbea9d..61ae059d50a 100644 --- a/gnu/packages/sawfish.scm +++ b/gnu/packages/sawfish.scm @@ -70,45 +70,3 @@ 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+))) - -(define-public rep-gtk - (package - (name "rep-gtk") - (version "0.90.8.3") - (source (origin - (method url-fetch) - (uri (string-append "https://download.tuxfamily.org/librep/" - name "/" name "_" version ".tar.xz")) - (sha256 - (base32 - "0hgkkywm8zczir3lqr727bn7ybgg71x9cwj1av8fykkr8pdpard9")) - (modules '((guix build utils))) - (snippet - '(begin - (substitute* "Makefile.in" - (("installdir=\\$\\(repexecdir\\)") - ;; Install libraries for librep to $out/lib/rep. - "installdir=$(libdir)/rep")) - #t)))) - (build-system gnu-build-system) - (arguments - `(#:tests? #f ; no tests - #:phases - (modify-phases %standard-phases - (add-before 'bootstrap 'remove-autogen - (lambda _ - ;; Remove autogen.sh so that the bootstrap phase can run - ;; autoreconf. - (delete-file "autogen.sh") - #t))))) - (native-inputs - (list autoconf automake libtool pkg-config)) - (propagated-inputs - ;; required by rep-gtk.pc. - (list gtk+-2 librep)) - (home-page "https://sawfish.fandom.com/wiki/Rep-GTK") - (synopsis "GTK+ binding for librep") - (description - "Rep-GTK is a GTK+ (and GLib, GDK) binding to the librep, and one of the -backend of Sawfish.") - (license gpl2+)))