me
/
guix
Archived
1
0
Fork 0

gnu: Add libxpresent.

* gnu/packages/xorg.scm (libxpresent): New variable.
master
Oleg Pykhalov 2022-01-01 03:35:32 +03:00
parent df78f62279
commit 7edc70ee27
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C
1 changed files with 22 additions and 1 deletions

View File

@ -16,7 +16,7 @@
;;; Copyright © 2017, 2020 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 20182021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
;;; Copyright © 2018, 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2018, 2020, 2022 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2018 Benjamin Slade <slade@jnanam.net>
;;; Copyright © 2019 nee <nee@cock.li>
;;; Copyright © 2019 Yoshinori Arai <kumagusu08@gmail.com>
@ -6002,6 +6002,27 @@ user-friendly mechanism to start the X server.")
Intrinsics (Xt) Library.")
(license license:x11)))
(define-public libxpresent
(package
(name "libxpresent")
(version "1.0.0")
(source (origin
(method url-fetch)
(uri "mirror://xorg/individual/lib/libXpresent-1.0.0.tar.bz2")
(sha256
(base32
"12kvvar3ihf6sw49h6ywfdiwmb8i1gh8wasg1zhzp6hs2hay06n1"))))
(inputs
(list libx11 xorgproto libxext libxfixes libxrandr))
(native-inputs
(list pkg-config))
(build-system gnu-build-system)
(home-page "https://gitlab.freedesktop.org/xorg/lib/libxpresent")
(synopsis "Xlib-compatible API for the Present extension")
(description "This package provides a Xlib-based library for the X Present
Extension.")
(license license:x11)))
(define-public xclock
(package
(name "xclock")