packages: admin: Add fastfetch (with working fish completions)

main
Luis Guilherme Coelho 2024-11-04 21:14:19 -03:00
parent 90639dc495
commit 51497ba9d7
No known key found for this signature in database
GPG Key ID: 1F2E76ACE3F531C8
1 changed files with 49 additions and 0 deletions

View File

@ -1,4 +1,13 @@
(define-module (radix packages admin)
#:use-module (gnu packages compression)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages glib)
#:use-module (gnu packages imagemagick)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
#:use-module (gnu packages gl)
#:use-module (gnu packages xorg)
#:use-module (guix build-system cmake)
#:use-module (guix build-system copy)
#:use-module (guix gexp)
#:use-module (guix git-download)
@ -30,3 +39,43 @@
(description "Simple script to suspend or hibernate your computer. It
suports hooks before and after suspending.")
(license license:cc0))))
(define-public fastfetch
(package
(name "fastfetch")
(version "2.16.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/fastfetch-cli/fastfetch")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "112dvfx7gvp6n20i1lkd0jbh897jf7bxjxq96bj4099j3x313y3m"))))
(build-system cmake-build-system)
(inputs (list dbus
glib
imagemagick
libxcb
mesa
python-3.10
wayland
zlib)) ;for imagemagick and an #ifdef
(native-inputs (list pkg-config))
(arguments
(list #:tests? #f ; no test target
#:phases #~(modify-phases %standard-phases
(add-after 'unpack 'fix-completion
(lambda _
(substitute* "completions/fastfetch.fish"
(("python3")
(string-append #$(this-package-input "python")
"/bin/python3"))))))))
(home-page "https://github.com/fastfetch-cli/fastfetch")
(synopsis "Display system information in a stylized manner")
(description
"Fastfetch is a tool for fetching system information and displaying it in
a stylized way. Fastfetch displays this information next to a logo of the
system distribution, akin to many similar tools.")
(license license:expat)))