[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/10: gnu: Add uwufetch.
From: |
guix-commits |
Subject: |
04/10: gnu: Add uwufetch. |
Date: |
Wed, 1 Feb 2023 16:20:13 -0500 (EST) |
ngz pushed a commit to branch master
in repository guix.
commit 0de13907faf623a2065a790d91948da3d1fad534
Author: Juliana Sims <jtsims@protonmail.com>
AuthorDate: Sun Jan 29 15:44:48 2023 -0600
gnu: Add uwufetch.
* gnu/packages/admin.scm (uwufetch): Add uwufetch.
---
gnu/packages/admin.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 5cea17d562..46b38ef053 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -55,6 +55,7 @@
;;; Copyright © 2022 ( <paren@disroot.org>
;;; Copyright © 2022 Matthew James Kraai <kraai@ftbfs.org>
;;; Copyright © 2022 jgart <jgart@dismail.de>
+;;; Copyright © 2023 Juliana Sims <jtsims@protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -3944,6 +3945,48 @@ be used in screenshots to show other users what
operating system or distribution
you are running, what theme or icon set you are using, etc.")
(license license:expat)))
+(define-public uwufetch
+ (package
+ (name "uwufetch")
+ (version "2.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/TheDarkBug/uwufetch")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0s4pzaqmlq6rn54kgmlpcrc0sy3q5zn6lxh4448k9iimshljsjfs"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:tests? #f ;no tests
+ #:make-flags
+ #~(list (string-append "DESTDIR=" #$output)
+ (string-append "ETC_DIR=" #$output "/etc")
+ (string-append "CC=" #$(cc-for-target)))
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (add-before 'build 'path-source-paths
+ (lambda _
+ (substitute* "uwufetch.c"
+ (("(/usr(/local)?)(.*;)" all _ _ rest)
+ (string-append #$output rest))))))))
+ (inputs (list lshw
+ ;; viu XXX not yet packaged in Guix
+ xwininfo))
+ (home-page "https://github.com/TheDarkBug/uwufetch")
+ (synopsis "Meme system info tool based on Nyan/UwU trend")
+ (description
+ "UwUFetch is a system information tool in the lineage of NeoFetch,
+PFetch, HyFetch, and the like. It prints ASCII art of your system's logo as
+well as a summary of system information. UwUFetch's unique contribution is the
+uwu-ification of various words used in the description. For example, Guix
+becomes gUwUix.")
+ (license license:gpl3+)))
+
(define-public screenfetch
(package
(name "screenfetch")
- branch master updated (9d7a1e58f9 -> 43eed907d2), guix-commits, 2023/02/01
- 01/10: gnu: mupdf: Update to 1.21.1., guix-commits, 2023/02/01
- 04/10: gnu: Add uwufetch.,
guix-commits <=
- 09/10: gnu: emacs-tramp: Update to 2.6.0.1., guix-commits, 2023/02/01
- 07/10: gnu: emacs-url-scgi: Update to 0.9., guix-commits, 2023/02/01
- 10/10: gnu: emacs-embark: Update to 0.21.1., guix-commits, 2023/02/01
- 05/10: gnu: emacs-auctex: Update to 13.1.9., guix-commits, 2023/02/01
- 03/10: gnu: emacs-ibrowse: Update to 0.1.8., guix-commits, 2023/02/01
- 06/10: gnu: emacs-compat: Update to 29.1.3.2., guix-commits, 2023/02/01
- 08/10: gnu: emacs-pyim: Update to 5.3.0., guix-commits, 2023/02/01
- 02/10: gnu: Add emacs-pretty-speedbar., guix-commits, 2023/02/01