guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 655040ecb11b786bb33b87355ccf59dc252c9c99
Author: Andreas Enge <[email protected]>
AuthorDate: Sun Jul 27 00:15:24 2025 +0200

    gnu: obconf: Use modern style.
    
    * gnu/packages/openbox.scm (obconf)[inputs, native-inputs]: Drop labels.
    [arguments]: Use gexp.
    [home-page]: Update.
    
    Change-Id: I03f84b581d7a4e2c68ce7f7018d5350bc106d1bb
---
 gnu/packages/openbox.scm | 26 ++++++++++++--------------
 1 file changed, 12 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/openbox.scm b/gnu/packages/openbox.scm
index 85c3bda958..cd12c9b261 100644
--- a/gnu/packages/openbox.scm
+++ b/gnu/packages/openbox.scm
@@ -95,22 +95,20 @@ implementations.")
        (sha256
         (base32
          "1fanjdmd8727kk74x5404vi8v7s4kpq48l583d12fsi4xvsfb8vi"))))
-    (inputs
-     `(("gtk+-2" ,gtk+-2)
-       ("imlib2" ,imlib2)
-       ("libglade" ,libglade)
-       ("openbox" ,openbox)
-       ("startup-notification" ,startup-notification)
-       ("libsm" ,libsm)
-       ("librsvg" ,(librsvg-for-system))
-       ("libxft" ,libxft)))
-    (native-inputs
-     `(("gettext" ,gettext-minimal)
-       ("pkg-config" ,pkg-config)))
+    (inputs (list gtk+-2
+                  imlib2
+                  libglade
+                  libsm
+                  librsvg
+                  libxft
+                  openbox
+                  startup-notification))
+    (native-inputs (list gettext-minimal pkg-config))
     (build-system gnu-build-system)
     (arguments
-     `(#:configure-flags (list "--enable-nls")))
-    (home-page "http://openbox.org/wiki/ObConf:About";)
+     (list
+       #:configure-flags (list "--enable-nls")))
+    (home-page "https://openbox.org/obconf";)
     (synopsis "Openbox configuration tool")
     (description
      "Obconf is a tool for configuring the Openbox window manager.

Reply via email to