mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add perl-x11-protocol-other.
* gnu/packages/xorg.scm (perl-x11-protocol-other): New variable.
This commit is contained in:
parent
a89faa3faa
commit
f82fe68f99
1 changed files with 29 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
||||||
;;; Copyright © 2017, 2018 Rutger Helling <rhelling@mykolab.com>
|
;;; Copyright © 2017, 2018 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -5855,6 +5856,34 @@ (define-public perl-x11-protocol
|
||||||
;; for details)."
|
;; for details)."
|
||||||
(license license:perl-license)))
|
(license license:perl-license)))
|
||||||
|
|
||||||
|
(define-public perl-x11-protocol-other
|
||||||
|
(package
|
||||||
|
(name "perl-x11-protocol-other")
|
||||||
|
(version "30")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://cpan/authors/id/K/KR/KRYDE/X11-Protocol-Other-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1mambi57cdkj82wiw1l8y2f70a60qsamdas0165hlj10drryfgrj"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("perl-encode-hanextra" ,perl-encode-hanextra)
|
||||||
|
("perl-module-util" ,perl-module-util)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("perl-x11-protocol" ,perl-x11-protocol)))
|
||||||
|
(home-page "http://search.cpan.org/dist/X11-Protocol-Other/")
|
||||||
|
(synopsis "Miscellaneous helpers for @code{X11::Protocol} connections")
|
||||||
|
(description
|
||||||
|
"@code{X11::Protocol::Other} contains window manager related functions for
|
||||||
|
use by client programs, as per the @dfn{ICCCM} (Inter-Client Communication
|
||||||
|
Conventions Manual) and some of the @dfn{EWMH}
|
||||||
|
(Extended Window Manager Hints).")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public xcompmgr
|
(define-public xcompmgr
|
||||||
(package
|
(package
|
||||||
(name "xcompmgr")
|
(name "xcompmgr")
|
||||||
|
|
Loading…
Reference in a new issue