diff options
author | Zheng Junjie <z572@z572.online> | 2025-05-05 19:12:59 +0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:49 +0200 |
commit | bab36b3d382312655c5ceb4a03ab8daec80ff20b (patch) | |
tree | 022bcf1ee7d011460af0122ba6445c66afa826c0 | |
parent | 7c348e2c1657e565a527c532c498131ca9c4036a (diff) |
gnu: libdisplay-info: Update to 0.2.0.
* gnu/packages/wm.scm (libdisplay-info): Update to 0.2.0.
Change-Id: I7dd4b6899341ff4d5b1da23ac04af11f7cd724c2
-rw-r--r-- | gnu/packages/wm.scm | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index e1ff3ad295..c4170b6b13 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -3705,34 +3705,34 @@ for wayland conceptually based on the X11 window manager (license license:expat))) (define-public libdisplay-info - (let ((commit "ebee35935dad01478ae1ae5ead298c4cd8018ac2") - (revision "0")) - (package - (name "libdisplay-info") - (version (git-version "0.2.0-dev" revision commit)) - (home-page "https://gitlab.freedesktop.org/emersion/libdisplay-info") - (source - (origin - (method git-fetch) - (uri (git-reference (url home-page) (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ly8acdjxn8l55y0wc07n7pb6rzh9dpr1vbsakdib2zrl0i5yh3a")))) - (build-system meson-build-system) - (arguments - (list - #:phases #~(modify-phases %standard-phases - (add-before 'configure 'fix-meson-file - (lambda* (#:key native-inputs inputs #:allow-other-keys) - (substitute* "meson.build" - (("/usr/share/hwdata/pnp.ids") - (string-append (assoc-ref (or native-inputs inputs) - "hwdata") - "/share/hwdata/pnp.ids")))))))) - (native-inputs (list hwdata python)) - (synopsis "EDID and DisplayID library") - (description - "This package provides a library to read @acronym{EDID, Extended + (package + (name "libdisplay-info") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.freedesktop.org/emersion/libdisplay-info") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0x5paiq0lfvq6kbn5hgf0h8m86mjkqqj1pldjgl1i0n7nc39c6gb")))) + (build-system meson-build-system) + (arguments + (list + #:phases #~(modify-phases %standard-phases + (add-before 'configure 'fix-meson-file + (lambda* (#:key native-inputs inputs #:allow-other-keys) + (substitute* "meson.build" + (("/usr/share/hwdata/pnp.ids") + (string-append (assoc-ref (or native-inputs inputs) + "hwdata") + "/share/hwdata/pnp.ids")))))))) + (native-inputs (list hwdata python)) + (home-page "https://gitlab.freedesktop.org/emersion/libdisplay-info") + (synopsis "EDID and DisplayID library") + (description + "This package provides a library to read @acronym{EDID, Extended Display Identification Data} and DisplayID metadata from display devices. It has the following goals: @@ -3745,7 +3745,7 @@ Simplicity and correctness over performance and resource usage. @item Well-tested and fuzzed. @end enumerate") - (license license:expat)))) + (license license:expat))) (define-public libucl (package |