From mboxrd@z Thu Jan 1 00:00:00 1970 From: xd1le Subject: [PATCH 1/2] gnu: sxhkd: New variable. Date: Sat, 10 Oct 2015 22:06:39 +1100 Message-ID: <1444475200-19563-2-git-send-email-elisp.vim@gmail.com> References: <87d1wnrr8z.fsf@gmail.com> <1444475200-19563-1-git-send-email-elisp.vim@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51640) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zks26-0005Ea-Ma for guix-devel@gnu.org; Sat, 10 Oct 2015 07:09:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zks25-0003QZ-Le for guix-devel@gnu.org; Sat, 10 Oct 2015 07:09:46 -0400 Received: from mail-pa0-x233.google.com ([2607:f8b0:400e:c03::233]:36667) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zks25-0003Q7-GY for guix-devel@gnu.org; Sat, 10 Oct 2015 07:09:45 -0400 Received: by pablk4 with SMTP id lk4so110477261pab.3 for ; Sat, 10 Oct 2015 04:09:44 -0700 (PDT) In-Reply-To: <1444475200-19563-1-git-send-email-elisp.vim@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org, alezost@gmail.com * gnu/packages/xdisorg.scm (sxhkd): New variable. --- gnu/packages/xdisorg.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 96e7c3a..40dbef6 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2015 Mathieu Lirzin ;;; Copyright © 2015 Alexander I.Grafov ;;; Copyright © 2015 Andy Wingo +;;; Copyright © 2015 xd1le ;;; ;;; This file is part of GNU Guix. ;;; @@ -32,6 +33,7 @@ #:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system python) #:use-module (gnu packages) + #:use-module (gnu packages asciidoc) #:use-module (gnu packages compression) #:use-module (gnu packages image) #:use-module (gnu packages pkg-config) @@ -492,6 +494,38 @@ clicks or timed double clicks take actions. Also all functions that work in Guile will work for XBindKeys.") (license license:gpl2+))) +(define-public sxhkd + (package + (name "sxhkd") + (version "0.5.5") + (source + (origin + (file-name (string-append name "-" version ".tar.gz")) + (method url-fetch) + (uri (string-append + "https://github.com/baskerville/sxhkd/archive/" + version ".tar.gz")) + (sha256 + (base32 + "04s3y2bq9502gw72jj3y2zsh96yj3qg2av3zsa8ahd2farvrysg6")))) + (build-system gnu-build-system) + (inputs + `(("asciidoc" ,asciidoc) + ("libxcb" ,libxcb) + ("xcb-util" ,xcb-util) + ("xcb-util-keysyms" ,xcb-util-keysyms) + ("xcb-util-wm" ,xcb-util-wm))) + (arguments + '(#:phases (alist-delete 'configure %standard-phases) + #:tests? #f ;; No tests. + #:make-flags (list "CC=gcc" (string-append + "PREFIX=" (assoc-ref %outputs "out"))))) + (home-page "https://github.com/baskerville/sxhkd") + (synopsis "Simple X hotkey daemon") + (description "sxhkd is a simple X hotkey daemon with a powerful and +compact configuration syntax.") + (license license:bsd-2))) + (define-public rxvt-unicode (package (name "rxvt-unicode") -- 2.5.2