From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37416) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d7p3h-0007K9-NH for guix-patches@gnu.org; Mon, 08 May 2017 16:15:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d7p3e-0002Cu-HA for guix-patches@gnu.org; Mon, 08 May 2017 16:15:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57562) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d7p3e-0002Ca-E2 for guix-patches@gnu.org; Mon, 08 May 2017 16:15:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d7p3e-0005id-9p for guix-patches@gnu.org; Mon, 08 May 2017 16:15:02 -0400 Subject: bug#26844: [PATCH] gnu: add neofetch Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37367) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d7p3O-0007Ha-3Z for guix-patches@gnu.org; Mon, 08 May 2017 16:14:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d7p3K-00025W-QM for guix-patches@gnu.org; Mon, 08 May 2017 16:14:46 -0400 Received: from mail-qk0-x22a.google.com ([2607:f8b0:400d:c09::22a]:36146) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d7p3K-00025O-Ka for guix-patches@gnu.org; Mon, 08 May 2017 16:14:42 -0400 Received: by mail-qk0-x22a.google.com with SMTP id u75so62204729qka.3 for ; Mon, 08 May 2017 13:14:42 -0700 (PDT) From: "Ethan R. Jones" Date: Mon, 8 May 2017 16:14:21 -0400 Message-Id: <20170508201421.28647-1-doubleplusgood23@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 26844@debbugs.gnu.org Cc: "Ethan R. Jones" --- gnu/packages/games.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index b47a66193..8e0331d26 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -29,6 +29,8 @@ ;;; Copyright © 2017 Tobias Geerinckx-Rice ;;; Copyright © 2017 nee ;;; Copyright © 2017 Clément Lassieur +;;; Copyright © 2017 Ethan R. Jones +;;; ;;; ;;; This file is part of GNU Guix. ;;; @@ -4168,3 +4170,36 @@ at their peak of economic growth and military prowess. license:lgpl3 license:mpl2.0 license:zlib)))) + +(define-public neofetch + (package + (name "neofetch") + (version "3.1.0") + (source (origin + (method url-fetch) + (uri + (string-append "https://github.com/dylanaraps/neofetch/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version)) + (sha256 + (base32 + "1rgznkl7a5q7lnc6zxlwvinq20b7k46n949l1hiwifarv0jgwynv")))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f ;; no tests + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build)) + #:make-flags ;; proper DESTDIR + (list (string-append "DESTDIR=" %output)))) + (inputs `(("bash" ,bash))) + (synopsis "System info script") + (description "Neofetch is a CLI system information tool written in +BASH. Neofetch displays information about your system next to an image, your OS +logo, or any ASCII file of your choice. The main purpose of Neofetch is +to be used in screenshots to show other users what OS/Distro you're +running, what Theme/Icons you're using etc.") + (home-page "https://github.com/dylanaraps/neofetch") + (license license:expat))) + -- 2.12.2