From a2bb6a3883acab3af452535fc81b2f4316e778c1 Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Mon, 24 Nov 2025 18:45:58 -0500 Subject: [PATCH] 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 Signed-off-by: Sharlatan Hellseher --- 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 dffc8e87f6c9207aa62da6a6643418c715a6eca8..5584d9d4c3460a451e8f195bd130d919516cff57 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")