From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56409) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hfsYq-0002Pi-TX for guix-patches@gnu.org; Tue, 25 Jun 2019 17:01:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hfsYp-0004fA-2d for guix-patches@gnu.org; Tue, 25 Jun 2019 17:01:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48331) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hfsYo-0004du-2p for guix-patches@gnu.org; Tue, 25 Jun 2019 17:01:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hfsYn-00059l-Um for guix-patches@gnu.org; Tue, 25 Jun 2019 17:01:01 -0400 Subject: [bug#35707] [PATCH] gnu: Add lemonbar package Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:55838) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hfsXz-0002Es-C7 for guix-patches@gnu.org; Tue, 25 Jun 2019 17:00:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hfsXv-0003JB-Cr for guix-patches@gnu.org; Tue, 25 Jun 2019 17:00:09 -0400 Received: from mx1.riseup.net ([198.252.153.129]:48004) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hfsXp-00036s-TZ for guix-patches@gnu.org; Tue, 25 Jun 2019 17:00:05 -0400 Received: from bell.riseup.net (bell-pn.riseup.net [10.0.1.178]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 9DA951A3053 for ; Tue, 25 Jun 2019 13:59:56 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) by bell.riseup.net (Postfix) with ESMTPSA id F1E6F222E80 for ; Tue, 25 Jun 2019 13:59:55 -0700 (PDT) References: <20190513045721.12410-1-nnoodle@chiru.no> From: swedebugia Message-ID: Date: Tue, 25 Jun 2019 22:59:53 +0200 MIME-Version: 1.0 In-Reply-To: <20190513045721.12410-1-nnoodle@chiru.no> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit 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 On 2019-05-13 06:57, Noodles! wrote: > +(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=gcc" > + (string-append "PREFIX=" %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)))) It did not apply because of patch age. I applied it manually. LGTM! Thanks. -- Cheers Swedebugia