guix_mirror_bot pushed a commit to branch master
in repository guix.

commit dd0c88a5a21b212f1e3a6d2b991944d86f57a692
Author: Andreas Enge <[email protected]>
AuthorDate: Tue Mar 17 16:44:29 2026 +0100

    gnu: Remove seed.
    
    * gnu/packages/gnome.scm (seed): Delete variable.
    
    Fixes: guix/guix#6411
    Change-Id: I6410e0955ae3100b0223207b74b3b843abbcff0c
---
 gnu/packages/gnome.scm | 73 --------------------------------------------------
 1 file changed, 73 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 83732f57d7..ffdcb68020 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -505,79 +505,6 @@ bindings.")
     (home-page "https://wiki.gnome.org/Projects/Seed";)
     (license license:gpl3+)))
 
-(define-public seed
-  (package
-    (name "seed")
-    (version "3.8.1")
-    (source
-     (origin
-       (method url-fetch)
-       (uri
-        (string-append "mirror://gnome/sources/" name "/"
-                       (version-major+minor version) "/"
-                       name "-" version ".tar.xz"))
-       (sha256
-        (base32 "0cmcxaggcdcy13j27gy8id2qsf2p2sl4bz2mwb9zhv3gzavlvjw0"))
-       (patches
-        (search-patches "seed-webkit.patch"))))
-    (build-system glib-or-gtk-build-system)
-    (outputs '("out" "doc"))
-    (arguments
-     (list #:configure-flags
-           #~(list "--disable-static"
-                   "--enable-xorg-module"
-                   (string-append "--with-html-dir=" #$output:doc
-                                  "/share/gtk-doc/html")
-                   "--with-webkit=4.0")
-           #:phases
-           #~(modify-phases %standard-phases
-               ;; The seed-webkit.patch patches configure.ac.
-               ;; So the source files need to be re-bootstrapped.
-               (add-after 'unpack 'trigger-bootstrap
-                 (lambda _
-                   (for-each delete-file
-                             (list "configure"
-                                   "Makefile.in"))))
-               (add-after 'unpack 'patch-tests
-                 (lambda* (#:key outputs #:allow-other-keys)
-                   (substitute* (find-files "." "\\.js$")
-                     (("#!/usr/bin/env seed")
-                      (string-append "#!" (getcwd) "/src/seed"))))))))
-    (native-inputs
-     (list autoconf
-           automake
-           docbook-xml-4.1.2
-           gettext-minimal
-           gobject-introspection
-           gtk-doc/stable
-           intltool
-           libtool
-           pkg-config))
-    (inputs
-     (list cairo
-           dbus
-           dbus-glib
-           gnome-js-common
-           gtk+
-           gtk+-2
-           libffi
-           libxml2
-           mpfr
-           readline
-           sqlite
-           libxscrnsaver))
-    (propagated-inputs
-     (list glib
-           webkitgtk-with-libsoup2))
-    (synopsis "GObject JavaScriptCore bridge")
-    (description "Seed is a library and interpreter, dynamically bridging
-(through GObjectIntrospection) the WebKit JavaScriptCore engine, with the
-GNOME platform.  It serves as something which enables you to write standalone
-applications in JavaScript, or easily enable your application to be extensible
-in JavaScript.")
-    (home-page "https://wiki.gnome.org/Projects/Seed";)
-    (license license:lgpl2.0+)))
-
 (define-public libdmapsharing
   (package
     (name "libdmapsharing")

Reply via email to