diff options
author | 宋文武 <iyzsong@gmail.com> | 2014-12-08 21:36:03 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2014-12-09 18:50:01 +0800 |
commit | a693bba13510868a7edaabd37b8bd2c8335fdcf1 (patch) | |
tree | 2437f8a4364b6690fa536d038d4b412058831a86 /gnu/packages | |
parent | 6005bd0700544df27331c6aad9c7642dce9a91c8 (diff) | |
download | guix-a693bba13510868a7edaabd37b8bd2c8335fdcf1.tar.gz guix-a693bba13510868a7edaabd37b8bd2c8335fdcf1.zip |
gnu: Add startup-notification.
* gnu/packages/xdisorg.scm (startup-notification): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/xdisorg.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index a4e6bce22d..a118fd745e 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -189,3 +189,29 @@ put into mtdev may be from any MT device, specifically type A without contact tracking, type A with contact tracking, or type B with contact tracking.") (license license:x11))) + +(define-public startup-notification + (package + (name "startup-notification") + (version "0.12") + (source + (origin + (method url-fetch) + (uri (string-append "http://www.freedesktop.org/software/" name + "/releases/" name "-" version ".tar.gz")) + (sha256 + (base32 + "0jmyryrpqb35y9hd5sgxqy2z0r1snw7d3ljw0jak0n0cjdz1yf9w")))) + (build-system gnu-build-system) + (native-inputs `(("pkg-config" ,pkg-config))) + (inputs + `(("libx11" ,libx11) + ("xcb-util" ,xcb-util))) + (home-page "http://www.freedesktop.org/wiki/Software/startup-notification/") + (synopsis "Application startup notification and feedback library") + (description + "Startup-notification contains a reference implementation of the startup +notification protocol. The reference implementation is mostly under an X Window +System style license, and has no special dependencies.") + ;; Most of the code is provided under x11 license. + (license license:lgpl2.0+))) |