emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#26844: closed ([PATCH] gnu: add neofetch)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#26844: closed ([PATCH] gnu: add neofetch)
Date: Mon, 08 May 2017 21:07:01 +0000

Your message dated Mon, 08 May 2017 23:06:47 +0200
with message-id <address@hidden>
and subject line Re: bug#26844: [PATCH] gnu: add neofetch
has caused the debbugs.gnu.org bug report #26844,
regarding [PATCH] gnu: add neofetch
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
26844: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=26844
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: add neofetch Date: Mon, 8 May 2017 16:14:21 -0400
---
 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 <address@hidden>
 ;;; Copyright © 2017 nee <address@hidden>
 ;;; Copyright © 2017 Clément Lassieur <address@hidden>
+;;; Copyright © 2017 Ethan R. Jones <address@hidden>
+;;;
 ;;;
 ;;; 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




--- End Message ---
--- Begin Message --- Subject: Re: bug#26844: [PATCH] gnu: add neofetch Date: Mon, 08 May 2017 23:06:47 +0200 User-agent: mu4e 0.9.18; emacs 25.2.1
Ethan R. Jones <address@hidden> writes:

> ---
>  gnu/packages/games.scm | 35 +++++++++++++++++++++++++++++++++++
>  1 file changed, 35 insertions(+)

[…]

I made a couple of changes and pushed this with commit
c70e85501f7d0ac396de541623366b6e5dbef698 to master.

Thanks for the excellent first patch!  I hope we’ll see more in the
future :)

--
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net



--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]