mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: lf: Refresh package style.
* gnu/packages/disk.scm (lf): Adjust indentation. [arguments]: Use list style. Add <#:install-source?>. [native-inputs]: Sort alphabetically, move after arguments. [description]: Use texinfo style, adjust indentation. Change-Id: I7ce733139ca9a1514329cc1034de8f21c100b855
This commit is contained in:
parent
0243721fb9
commit
6533ff252a
1 changed files with 25 additions and 19 deletions
|
@ -28,6 +28,7 @@
|
||||||
;;; Copyright © 2023 Timotej Lazar <timotej.lazar@araneo.si>
|
;;; Copyright © 2023 Timotej Lazar <timotej.lazar@araneo.si>
|
||||||
;;; Copyright © 2023 Morgan Smith <Morgan.J.Smith@outlook.com>
|
;;; Copyright © 2023 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||||||
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
||||||
|
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1296,29 +1297,34 @@ (define-public lf
|
||||||
(package
|
(package
|
||||||
(name "lf")
|
(name "lf")
|
||||||
(version "31")
|
(version "31")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/gokcehan/lf")
|
(uri (git-reference
|
||||||
(commit (string-append "r" version))))
|
(url "https://github.com/gokcehan/lf")
|
||||||
(file-name (git-file-name name version))
|
(commit (string-append "r" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"03icsf4c3j7295s1d8s6srz5gf09a3lghgw3zfcd86p03zhkzsaf"))))
|
(base32 "03icsf4c3j7295s1d8s6srz5gf09a3lghgw3zfcd86p03zhkzsaf"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(native-inputs
|
|
||||||
(list go-github-com-mattn-go-runewidth go-golang-org-x-term
|
|
||||||
go-gopkg-in-djherbis-times-v1 go-github-com-gdamore-tcell-v2
|
|
||||||
go-github-com-djherbis-times))
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:go ,go-1.18
|
(list
|
||||||
#:import-path "github.com/gokcehan/lf"))
|
#:go go-1.18
|
||||||
|
#:install-source? #f
|
||||||
|
#:import-path "github.com/gokcehan/lf"))
|
||||||
|
(native-inputs
|
||||||
|
(list go-github-com-djherbis-times
|
||||||
|
go-github-com-gdamore-tcell-v2
|
||||||
|
go-github-com-mattn-go-runewidth
|
||||||
|
go-golang-org-x-term
|
||||||
|
go-gopkg-in-djherbis-times-v1))
|
||||||
(home-page "https://github.com/gokcehan/lf")
|
(home-page "https://github.com/gokcehan/lf")
|
||||||
(synopsis "Console file browser similar to Ranger")
|
(synopsis "Console file browser similar to Ranger")
|
||||||
(description "lf (as in \"list files\") is a terminal file manager
|
(description
|
||||||
written in Go. It is heavily inspired by ranger with some missing and
|
"@code{lf} (as in \"list files\") is a terminal file manager written in
|
||||||
extra features. Some of the missing features are deliberately omitted
|
Go. It is heavily inspired by @code{ranger} with some missing and extra
|
||||||
since they are better handled by external tools.")
|
features. Some of the missing features are deliberately omitted since they
|
||||||
|
are better handled by external tools.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public xfe
|
(define-public xfe
|
||||||
|
|
Loading…
Reference in a new issue