From 13d0fb43718a1b878eaa947e782926555128589e Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Mon, 24 Nov 2025 17:58:44 -0500 Subject: [PATCH] gnu: Add go-github-com-willscott-go-nfs-client. * gnu/packages/golang-web.scm (go-github-com-willscott-go-nfs-client): New variable. Change-Id: I8f4bed9dbcf42209d05aa6e7e12479b02b664f79 Modified-by: Sharlatan Hellseher Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-web.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 1155d4e20e8b751e306fb0700b4c3c00809ef056..a5868cfb6b35d531a9e16fca32cb53b9f35aedac 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -13925,6 +13925,32 @@ https://github.com/restic/restic project.") netmasks.") (license license:expat))) +(define-public go-github-com-willscott-go-nfs-client + (package + (name "go-github-com-willscott-go-nfs-client") + (version "0.0.0-20251022144359-801f10d98886") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/willscott/go-nfs-client") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0b1v0cxjj7dqd90iyhq1hg5ilnf047xgdvnw541ymbwj8in7ck34")))) + (build-system go-build-system) + (arguments + (list + #:skip-build? #t + #:import-path "github.com/willscott/go-nfs-client")) + (propagated-inputs (list go-github-com-rasky-go-xdr)) + (home-page "https://github.com/willscott/go-nfs-client") + (synopsis "NFS client for Go") + (description + "This package implements a Network File System (NFS) client in Go. +It's an alternative fork of unmaintained https://github.com/davecheney/nfs.") + (license license:bsd-2))) + (define-public go-github-com-willscott-goturn (package (name "go-github-com-willscott-goturn")