packages: disk: Update lf to version 33
parent
94fb308aea
commit
202a4aa188
|
@ -16,7 +16,7 @@
|
|||
(lf-url (string-append "https://" import-path)))
|
||||
(package
|
||||
(name "lf")
|
||||
(version "31")
|
||||
(version "33")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -25,7 +25,7 @@
|
|||
(commit (string-append "r" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "03icsf4c3j7295s1d8s6srz5gf09a3lghgw3zfcd86p03zhkzsaf"))))
|
||||
(base32 "1jmqf27ysi35n3hqahlzs5hym7i4w1mplklrvv0lc0baddzx7av8"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list #:go go-1.18
|
||||
|
@ -47,6 +47,7 @@
|
|||
(inputs (list go-golang-org-x-term
|
||||
go-golang-org-x-sys
|
||||
go-github-com-mattn-go-runewidth
|
||||
go-github-com-fsnotify-fsnotify
|
||||
go-github-com-gdamore-tcell-v2
|
||||
go-github-com-djherbis-times))
|
||||
(home-page lf-url)
|
||||
|
|
|
@ -38,3 +38,27 @@
|
|||
interact with terminals or consoles. It works with both common (and many
|
||||
uncommon!) terminals or terminal emulators, and Windows console implementations.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-fsnotify-fsnotify
|
||||
(package
|
||||
(name "go-github-com-fsnotify-fsnotify")
|
||||
(version "1.8.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/fsnotify/fsnotify")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1wr3695yb7hl405h6pzkbdkkxpdbmc5kwjjwaf9almbvmpk6077r"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list #:import-path "github.com/fsnotify/fsnotify"))
|
||||
(propagated-inputs (list go-golang-org-x-sys))
|
||||
(home-page "https://github.com/fsnotify/fsnotify")
|
||||
(synopsis "Usage")
|
||||
(description
|
||||
"Package fsnotify provides a cross-platform interface for file system
|
||||
notifications.")
|
||||
(license license:bsd-3)))
|
||||
|
|
Loading…
Reference in New Issue