packages: disk: Update lf to version 33

main
Luis Guilherme Coelho 2024-11-13 01:27:21 -03:00
parent 94fb308aea
commit 202a4aa188
No known key found for this signature in database
GPG Key ID: 1F2E76ACE3F531C8
2 changed files with 27 additions and 2 deletions

View File

@ -16,7 +16,7 @@
(lf-url (string-append "https://" import-path))) (lf-url (string-append "https://" import-path)))
(package (package
(name "lf") (name "lf")
(version "31") (version "33")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -25,7 +25,7 @@
(commit (string-append "r" version)))) (commit (string-append "r" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "03icsf4c3j7295s1d8s6srz5gf09a3lghgw3zfcd86p03zhkzsaf")))) (base32 "1jmqf27ysi35n3hqahlzs5hym7i4w1mplklrvv0lc0baddzx7av8"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
(list #:go go-1.18 (list #:go go-1.18
@ -47,6 +47,7 @@
(inputs (list go-golang-org-x-term (inputs (list go-golang-org-x-term
go-golang-org-x-sys go-golang-org-x-sys
go-github-com-mattn-go-runewidth go-github-com-mattn-go-runewidth
go-github-com-fsnotify-fsnotify
go-github-com-gdamore-tcell-v2 go-github-com-gdamore-tcell-v2
go-github-com-djherbis-times)) go-github-com-djherbis-times))
(home-page lf-url) (home-page lf-url)

View File

@ -38,3 +38,27 @@
interact with terminals or consoles. It works with both common (and many interact with terminals or consoles. It works with both common (and many
uncommon!) terminals or terminal emulators, and Windows console implementations.") uncommon!) terminals or terminal emulators, and Windows console implementations.")
(license license:asl2.0))) (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)))