1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 20:10:39 +02:00

gnu: go-github-com-nxadm-tail: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-nxadm-tail): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: I9762891d9c8cd8d2c01e69153eab88aa909ea7d1
This commit is contained in:
Sharlatan Hellseher 2024-11-24 11:56:23 +00:00
parent 6562b86fd7
commit 505474b8b5
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 25 additions and 24 deletions

View file

@ -6178,6 +6178,31 @@ queue.")
NSQ protocol @url{https://nsq.io/}.")
(license license:expat)))
(define-public go-github-com-nxadm-tail
(package
(name "go-github-com-nxadm-tail")
(version "1.4.11")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/nxadm/tail")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0s8lawq661g8qqf7c1cip5l60cm2138b125jgmv9h548ji9g5yqx"))))
(build-system go-build-system)
(arguments (list #:import-path "github.com/nxadm/tail"))
(propagated-inputs
(list go-github-com-fsnotify-fsnotify
go-gopkg-in-tomb-v1))
(home-page "https://github.com/nxadm/tail")
(synopsis "Go implementation of the functionality of @command{tail -f}")
(description
"This package provides a Go library for reading from continuously
updating files, like @command{tail -f}.")
(license license:expat)))
(define-public go-github-com-oklog-run
(package
(name "go-github-com-oklog-run")