gnu: neofetch: Update to 3.3.0.
* gnu/packages/admin.scm (neofetch): Update to 3.3.0. [arguments]: Add ‘install’ phase replacement that manually invokes make.
This commit is contained in:
parent
1e9433cf4d
commit
378140e591
|
@ -2139,7 +2139,7 @@ tool for remote execution and deployment.")
|
||||||
(define-public neofetch
|
(define-public neofetch
|
||||||
(package
|
(package
|
||||||
(name "neofetch")
|
(name "neofetch")
|
||||||
(version "3.2.0")
|
(version "3.3.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/dylanaraps/neofetch/"
|
(uri (string-append "https://github.com/dylanaraps/neofetch/"
|
||||||
|
@ -2147,10 +2147,10 @@ tool for remote execution and deployment.")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"07a32rzmch51znxspzyc7zyaldmr383v70b49wmnjdjs2qfdbv3a"))))
|
"15p69q0jchfms1fpb4i7kq8b28w2xpgh2zmynln618qxv1myf228"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; there are no tests
|
`(#:tests? #f ; there are no tests
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list (string-append "PREFIX=" %output))
|
(list (string-append "PREFIX=" %output))
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -2167,7 +2167,15 @@ tool for remote execution and deployment.")
|
||||||
(("\"/usr/share/neofetch")
|
(("\"/usr/share/neofetch")
|
||||||
(string-append "\"" out "/share/neofetch"))))
|
(string-append "\"" out "/share/neofetch"))))
|
||||||
#t))
|
#t))
|
||||||
(delete 'configure))))
|
(delete 'configure) ; no configure script
|
||||||
|
(replace 'install
|
||||||
|
(lambda* (#:key make-flags outputs #:allow-other-keys)
|
||||||
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
(doc (string-append out "/share/doc/" ,name "-" ,version))
|
||||||
|
(etc (string-append doc "/examples/etc")))
|
||||||
|
(zero? (apply system* `("make" ,@make-flags
|
||||||
|
,(string-append "SYSCONFDIR=" etc)
|
||||||
|
"install")))))))))
|
||||||
(home-page "https://github.com/dylanaraps/neofetch")
|
(home-page "https://github.com/dylanaraps/neofetch")
|
||||||
(synopsis "System info script")
|
(synopsis "System info script")
|
||||||
(description "Neofetch is a CLI system information tool written in Bash.
|
(description "Neofetch is a CLI system information tool written in Bash.
|
||||||
|
|
Loading…
Reference in New Issue