1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

gnu: go-github-com-nxadm-tail: Remove vendor.

* gnu/packages/golang-xyz.scm (go-github-com-nxadm-tail)
[source]<snippet>: Remove vendor directory.

Change-Id: Ic27f38953a02216d1c8e20d5785c9b4bba19a7b2
This commit is contained in:
Sharlatan Hellseher 2024-12-16 11:16:02 +00:00
parent b3d1311064
commit 2d4481af04
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -7537,9 +7537,14 @@ NSQ protocol @url{https://nsq.io/}.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0s8lawq661g8qqf7c1cip5l60cm2138b125jgmv9h548ji9g5yqx"))))
(base32 "0s8lawq661g8qqf7c1cip5l60cm2138b125jgmv9h548ji9g5yqx"))
(snippet
#~(begin (use-modules (guix build utils))
(delete-file-recursively "vendor")))))
(build-system go-build-system)
(arguments (list #:import-path "github.com/nxadm/tail"))
(arguments
(list
#:import-path "github.com/nxadm/tail"))
(propagated-inputs
(list go-github-com-fsnotify-fsnotify
go-gopkg-in-tomb-v1))