diff options
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 51 |
1 files changed, 47 insertions, 4 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index d4d4b663e9..46b38ef053 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -55,6 +55,7 @@ ;;; Copyright © 2022 ( <[email protected]> ;;; Copyright © 2022 Matthew James Kraai <[email protected]> ;;; Copyright © 2022 jgart <[email protected]> +;;; Copyright © 2023 Juliana Sims <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1968,7 +1969,7 @@ system administrator.") (define-public sudo (package (name "sudo") - (version "1.9.12p1") + (version "1.9.12p2") (source (origin (method url-fetch) (uri @@ -1978,7 +1979,7 @@ system administrator.") version ".tar.gz"))) (sha256 (base32 - "1n5ppabp9ark1qz7xi63528s07pmpak67c7agj8v5a1xxfl1hnj7")) + "0fc55axh2hfd8hn66dpmyrrgb0gf0nz71zpaygkrpp8x1ypb385r")) (modules '((guix build utils))) (snippet '(begin @@ -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") @@ -4122,7 +4165,7 @@ hard-coded.") (define-public thermald (package (name "thermald") - (version "2.4.7") + (version "2.5.1") (source (origin (method git-fetch) @@ -4131,7 +4174,7 @@ hard-coded.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1n0ih86bkm09bzhjl7hllxkl4gzcxvzsznbwi8dx87ragsjlix6n")))) + (base32 "06p1154w3n4lm0nq8fdsr6ksxl8shrc9z8yz0sbviss9afpawxcg")))) (build-system gnu-build-system) (arguments `(#:configure-flags |