From mboxrd@z Thu Jan 1 00:00:00 1970 From: xd1le Subject: [PATCH 2/2] gnu: bspwm: New variable. Date: Sat, 10 Oct 2015 22:06:40 +1100 Message-ID: <1444475200-19563-3-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]:51664) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zks28-0005Em-Sk for guix-devel@gnu.org; Sat, 10 Oct 2015 07:09:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zks27-0003S9-Rj for guix-devel@gnu.org; Sat, 10 Oct 2015 07:09:48 -0400 Received: from mail-pa0-x230.google.com ([2607:f8b0:400e:c03::230]:34550) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zks27-0003Re-M7 for guix-devel@gnu.org; Sat, 10 Oct 2015 07:09:47 -0400 Received: by padhy16 with SMTP id hy16so110145931pad.1 for ; Sat, 10 Oct 2015 04:09:47 -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/wm.scm (bspwm): New variable. --- gnu/packages/wm.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 9ca5b96..fe7d540 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2015 Eric Dvorsak ;;; Copyright © 2015 Siniša Biđin ;;; Copyright © 2015 Eric Bavier +;;; Copyright © 2015 xd1le ;;; ;;; This file is part of GNU Guix. ;;; @@ -64,6 +65,39 @@ single/double-quoted strings, environment variable expansion, functions and nested include statements).") (license isc))) +(define-public bspwm + (package + (name "bspwm") + (version "0.9") + (source + (origin + (file-name (string-append name "-" version ".tar.gz")) + (method url-fetch) + (uri (string-append + "https://github.com/baskerville/bspwm/archive/" + version ".tar.gz")) + (sha256 + (base32 + "1pig0h2jk8wipyz90j69c4bk37bfyq60asnn0v0bqld2p2vjvyqy")))) + (build-system gnu-build-system) + (inputs + `(("libxcb" ,libxcb) + ("libxinerama" ,libxinerama) + ("sxhkd" ,sxhkd) + ("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/bspwm") + (synopsis "Tiling window manager based on binary space partitioning") + (description "bspwm is a tiling window manager that represents windows as +the leaves of a full binary tree.") + (license bsd-2))) + (define-public i3status (package (name "i3status") -- 2.5.2