gnu: Add go-modernc-org-httpfs.

* gnu/packages/golang-web.scm (go-modernc-org-httpfs): New variable.

Change-Id: I4bd7855db682354b57ebd05b3c190f901efcf1cd
This commit is contained in:
Sharlatan Hellseher 2024-12-18 23:04:36 +00:00
parent 057a1e278d
commit 5d64a46e94
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -6875,6 +6875,30 @@ but implement that subset with little to no assumption about the structure of
the code or routes.")
(license license:asl2.0)))
(define-public go-modernc-org-httpfs
(package
(name "go-modernc-org-httpfs")
(version "1.0.6")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/cznic/httpfs")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "01q5rvhxmrd45h0ljh4185wlly7rxv6vvh28d2shsyan4nj67zf1"))))
(build-system go-build-system)
(arguments
(list
#:import-path "modernc.org/httpfs"))
(home-page "https://gitlab.com/cznic/httpfs")
(synopsis "HTTP file system implementation in Golang")
(description
"Package httpfs implements @code{http.FileSystem} on top of a
@code{map[string]string}.")
(license license:bsd-3)))
(define-public go-modernc-org-token
(package
(name "go-modernc-org-token")