diff options
author | Andreas Enge <andreas@enge.fr> | 2013-10-03 23:23:26 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-10-03 23:25:04 +0200 |
commit | 6ff104d5371c9dc6ffdfcec4dba59890a659bb20 (patch) | |
tree | c8797d669bd338b05e3f1bd0b9df7f2fae4d5041 | |
parent | 94c4a58a0acb7af0baf7301c39850d633390c4bc (diff) | |
download | patches-6ff104d5371c9dc6ffdfcec4dba59890a659bb20.tar patches-6ff104d5371c9dc6ffdfcec4dba59890a659bb20.tar.gz |
gnu: xorg: Add xcb-util-wm.
* gnu/packages/xorg.scm (xcb-util-wm): New variable.
-rw-r--r-- | gnu/packages/xorg.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 057afaf13f..538994baf6 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -4463,6 +4463,34 @@ emulation to complete hardware acceleration for modern GPUs.") (license license:x11))) +(define-public xcb-util-wm + (package + (name "xcb-util-wm") + (version "0.3.9") + (source (origin + (method url-fetch) + (uri (string-append "http://xcb.freedesktop.org/dist/xcb-util-wm-" + version ".tar.bz2")) + (sha256 + (base32 + "0c30fj33gvwzwhyz1dhsfwni0ai16bxpvxb4l6c6s7vvj7drp3q3")))) + (build-system gnu-build-system) + (propagated-inputs + `(("libxcb" ,libxcb))) + (inputs + `(("m4" ,m4) + ("pkg-config" ,pkg-config))) + (home-page "http://cgit.freedesktop.org/xcb/util-wm/") + (synopsis "Client and window-manager helpers for ICCCM and EWMH") + (description "The XCB util modules provides a number of libraries which + sit on top of libxcb, the core X protocol library, and some of the + extension libraries. These experimental libraries provide convenience +functions and interfaces which make the raw X protocol more usable. Some of +the libraries also provide client-side code which is not strictly part of +the X protocol but which has traditionally been provided by Xlib.") + (license license:x11))) + + ;; package outside the x.org system proper of height 5 (define-public libxaw3d |