guix_mirror_bot pushed a commit to branch master
in repository guix.
commit a2bb6a3883acab3af452535fc81b2f4316e778c1
Author: Patrick Norton <[email protected]>
AuthorDate: Mon Nov 24 18:45:58 2025 -0500
gnu: Add go-goftp-io-server-v2.
* gnu/packages/golang-web (go-goftp-io-server-v2): New variable.
Change-Id: I4dd698897b1ac33bf3bd3b344fa25c7bab45904f
Modified-by: Sharlatan Hellseher <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-web.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index dffc8e87f6..5584d9d4c3 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -15790,6 +15790,37 @@ maturity level}.")
a configuration language.")
(license license:bsd-3)))
+(define-public go-goftp-io-server-v2
+ (package
+ (name "go-goftp-io-server-v2")
+ (version "2.0.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitea.com/goftp/server")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "12gyq0jpp03bxzas5439d4a7shqak7vg7s9q7j4fa1vq5n2pd2qn"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:embed-files
+ #~(list "children" "nodes" "text")
+ #:import-path "goftp.io/server/v2"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (propagated-inputs
+ (list go-github-com-jlaffaye-ftp
+ go-github-com-minio-minio-go-v7))
+ (home-page "https://goftp.io/server")
+ (synopsis "FTP server framework")
+ (description
+ "This package provides a FTP server framework forked from
+ https://github.com/yob/graval.")
+ (license license:expat)))
+
(define-public go-goji-io
(package
(name "go-goji-io")