gnu: neofetch: Update to 6.1.0-1.501d6b7.
Fix Guix ascii not shown. * gnu/packages/admin.scm (neofetch): Update to 6.1.0-1.501d6b7.
This commit is contained in:
parent
ce0ca7625e
commit
73656471a4
1 changed files with 26 additions and 24 deletions
|
@ -30,6 +30,7 @@
|
||||||
;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
|
;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
|
||||||
;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||||
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -2904,34 +2905,35 @@ tool for remote execution and deployment.")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public neofetch
|
(define-public neofetch
|
||||||
(package
|
(let ((commit "501d6b7594296d9eac8943140f8581daf555873d"))
|
||||||
(name "neofetch")
|
(package
|
||||||
(version "6.1.0")
|
(name "neofetch")
|
||||||
(source (origin
|
(version (git-version "6.1.0" "1" commit))
|
||||||
(method git-fetch)
|
(source (origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/dylanaraps/neofetch")
|
(uri (git-reference
|
||||||
(commit version)))
|
(url "https://github.com/dylanaraps/neofetch")
|
||||||
(file-name (git-file-name name version))
|
(commit commit)))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"022xzn9jk18k2f4b6011d8jk5nbl84i3mw3inlz4q52p2hvk8fch"))))
|
(base32
|
||||||
(build-system gnu-build-system)
|
"1h5md9jimyc6z4d7w66j27hn8qghzyxgpkh5h9dclzxpp5cs8whb"))))
|
||||||
(arguments
|
(build-system gnu-build-system)
|
||||||
`(#:tests? #f ; there are no tests
|
(arguments
|
||||||
#:make-flags
|
`(#:tests? #f ; there are no tests
|
||||||
(list (string-append "PREFIX=" %output))
|
#:make-flags
|
||||||
#:phases
|
(list (string-append "PREFIX=" %output))
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(delete 'configure)))) ; no configure script
|
(modify-phases %standard-phases
|
||||||
(home-page "https://github.com/dylanaraps/neofetch")
|
(delete 'configure)))) ; no configure script
|
||||||
(synopsis "System information script")
|
(home-page "https://github.com/dylanaraps/neofetch")
|
||||||
(description "Neofetch is a command-line system information tool written in
|
(synopsis "System information script")
|
||||||
|
(description "Neofetch is a command-line system information tool written in
|
||||||
Bash. Neofetch displays information about your system next to an image, your OS
|
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
|
logo, or any ASCII file of your choice. The main purpose of Neofetch is to be
|
||||||
used in screenshots to show other users what operating system or distribution
|
used in screenshots to show other users what operating system or distribution
|
||||||
you are running, what theme or icon set you are using, etc.")
|
you are running, what theme or icon set you are using, etc.")
|
||||||
(license license:expat)))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public screenfetch
|
(define-public screenfetch
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue