summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-08-31 10:33:34 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2026-08-31 11:16:14 +0900
commit8be1fd249ce2f28275eb943fdbb4331fa8be6b74 (patch)
tree98dcc653ab37b25cb27b9535eac683cc869c28a6
parentd58b87868dd87803798a0b2f13c228ae3435ef44 (diff)
gnu: gnome-color-manager: Fix indentation and drop input labels.
* gnu/packages/gnome.scm (gnome-color-manager): Fix indentation and drop input labels.
-rw-r--r--gnu/packages/gnome.scm93
1 files changed, 46 insertions, 47 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 5121afbf572..f05af58f469 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -1227,56 +1227,55 @@ in particular in the GNOME desktop.")
1227 1227
1228(define-public gnome-color-manager 1228(define-public gnome-color-manager
1229 (package 1229 (package
1230 (name "gnome-color-manager") 1230 (name "gnome-color-manager")
1231 (version "3.36.2") 1231 (version "3.36.2")
1232 (source (origin 1232 (source (origin
1233 (method url-fetch) 1233 (method url-fetch)
1234 (uri (string-append "mirror://gnome/sources/" name "/" 1234 (uri (string-append "mirror://gnome/sources/" name "/"
1235 (version-major+minor version) "/" 1235 (version-major+minor version) "/"
1236 name "-" version ".tar.xz")) 1236 name "-" version ".tar.xz"))
1237 (sha256 1237 (sha256
1238 (base32 1238 (base32
1239 "0zw87bipnk4s8qcb659gd5n3i1lz1fzq43l81ggnd9afpcmd811r")))) 1239 "0zw87bipnk4s8qcb659gd5n3i1lz1fzq43l81ggnd9afpcmd811r"))))
1240 (build-system meson-build-system) 1240 (build-system meson-build-system)
1241 (arguments 1241 (arguments
1242 `(#:glib-or-gtk? #t 1242 (list
1243 #:glib-or-gtk? #t
1243 #:phases 1244 #:phases
1244 (modify-phases %standard-phases 1245 #~(modify-phases %standard-phases
1245 (add-before 1246 (add-before 'check 'pre-check
1246 'check 'pre-check 1247 (lambda _
1247 (lambda _ 1248 ;; Tests require a running X server.
1248 ;; Tests require a running X server. 1249 (system "Xvfb :1 &")
1249 (system "Xvfb :1 &") 1250 (setenv "DISPLAY" ":1"))))))
1250 (setenv "DISPLAY" ":1") 1251 (native-inputs
1251 #t))))) 1252 (list desktop-file-utils
1252 (native-inputs 1253 gettext-minimal
1253 `(("desktop-file-utils" ,desktop-file-utils) 1254 `(,glib "bin")
1254 ("gettext" ,gettext-minimal) 1255 `(,gtk+ "bin")
1255 ("glib:bin" ,glib "bin") 1256 itstool
1256 ("gtk+:bin" ,gtk+ "bin") 1257 pkg-config
1257 ("itstool" ,itstool) 1258 xorg-server-for-tests))
1258 ("pkg-config" ,pkg-config) 1259 (inputs
1259 ("xorg-server" ,xorg-server-for-tests))) 1260 (list adwaita-icon-theme
1260 (inputs 1261 appstream-glib
1261 (list adwaita-icon-theme 1262 colord-gtk
1262 appstream-glib 1263 exiv2
1263 colord-gtk 1264 gnome-desktop
1264 exiv2 1265 libcanberra
1265 gnome-desktop 1266 libexif
1266 libcanberra 1267 libtiff
1267 libexif 1268 libxrandr
1268 libtiff 1269 libxtst
1269 libxrandr 1270 libxxf86vm
1270 libxtst 1271 vte/gtk+-3
1271 libxxf86vm 1272 xorgproto))
1272 vte/gtk+-3 1273 (synopsis "Color profile manager for the GNOME desktop")
1273 xorgproto)) 1274 (description "GNOME Color Manager is a session framework that makes
1274 (synopsis "Color profile manager for the GNOME desktop")
1275 (description "GNOME Color Manager is a session framework that makes
1276it easy to manage, install and generate color profiles 1275it easy to manage, install and generate color profiles
1277in the GNOME desktop.") 1276in the GNOME desktop.")
1278 (home-page "https://gitlab.gnome.org/GNOME/gnome-color-manager") 1277 (home-page "https://gitlab.gnome.org/GNOME/gnome-color-manager")
1279 (license license:gpl2+))) 1278 (license license:gpl2+)))
1280 1279
1281(define-public gssdp 1280(define-public gssdp
1282 (package 1281 (package