From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:57845) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hQ3kV-0002pd-1b for guix-patches@gnu.org; Mon, 13 May 2019 01:43:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hQ3VL-0007O9-0C for guix-patches@gnu.org; Mon, 13 May 2019 01:28:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58562) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hQ3VK-0007O1-Tv for guix-patches@gnu.org; Mon, 13 May 2019 01:28:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hQ3VK-0003nn-Ie for guix-patches@gnu.org; Mon, 13 May 2019 01:28:02 -0400 Subject: [bug#35707] [PATCH] gnu: Add lemonbar package Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:53316) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hQ3BM-00079i-8a for guix-patches@gnu.org; Mon, 13 May 2019 01:07:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hQ3BK-0004YH-PI for guix-patches@gnu.org; Mon, 13 May 2019 01:07:24 -0400 Received: from chiru.no ([142.4.209.132]:37566) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hQ3BK-0004XR-FQ for guix-patches@gnu.org; Mon, 13 May 2019 01:07:22 -0400 From: Noodles! Date: Mon, 13 May 2019 04:57:21 +0000 Message-Id: <20190513045721.12410-1-nnoodle@chiru.no> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35707@debbugs.gnu.org Cc: Noodles! --- gnu/packages/wm.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 0a05ff4ae..6c727e36c 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -19,6 +19,7 @@ ;;; Copyright =C2=A9 2018 Pierre-Antoine Rouby ;;; Copyright =C2=A9 2018 Meiyo Peng ;;; Copyright =C2=A9 2019 Rutger Helling +;;; Copyright =C2=A9 2019 Noodles! ;;; ;;; This file is part of GNU Guix. ;;; @@ -1087,6 +1088,42 @@ customizable status bars for their desktop environ= ment. It has built-in functionality to display information about the most commonly used servic= es.") (license license:expat))) =20 +(define-public lemonbar + (let ((commit "35183ab81d2128dbb7b6d8e119cc57846bcefdb4") + (revision "1")) + (package + (name "lemonbar") + (version (git-version "1.3" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/LemonBoy/bar") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1wwqbph392iwz8skaqxb0xpklb1l6yganqz80g4x1fhrnz7idmlh")= ))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f + #:make-flags (list "CC=3Dgcc" + (string-append "PREFIX=3D" %output)) + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (inputs + `(("libxcb" ,libxcb))) + (native-inputs + `(("perl" ,perl))) + (home-page "https://github.com/LemonBoy/bar") + (synopsis "Featherweight status bar") + (description + "@code{lemonbar} (formerly known as @code{bar}) is a lightweight +bar entirely based on XCB. Provides full UTF-8 support, basic +formatting, RandR and Xinerama support and EWMH compliance without +wasting your precious memory.") + (license license:x11)))) + (define-public wlroots (package (name "wlroots") --=20 2.17.1