diff options
| author | Andreas Enge <andreas@enge.fr> | 2025-07-27 00:15:24 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-27 00:53:32 +0200 |
| commit | 655040ecb11b786bb33b87355ccf59dc252c9c99 (patch) | |
| tree | 5d580452f4f84b09bb4d22de6a3d6861897d03dc | |
| parent | 0e649f3631b03d4cfda2785dea798af6dbe3e4c5 (diff) | |
gnu: obconf: Use modern style.
* gnu/packages/openbox.scm (obconf)[inputs, native-inputs]: Drop labels.
[arguments]: Use gexp.
[home-page]: Update.
Change-Id: I03f84b581d7a4e2c68ce7f7018d5350bc106d1bb
| -rw-r--r-- | gnu/packages/openbox.scm | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/gnu/packages/openbox.scm b/gnu/packages/openbox.scm index 85c3bda9585..cd12c9b261e 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. |
