1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-30 21:04:05 +02:00

gnu: go-github-com-gofiber-fiber-v3: Update to 3.3.0.

* gnu/packages/golang-web.scm (go-github-com-gofiber-fiber-v3): Update to 3.3.0.
[arguments] <embed-files>: Embed data directories from golang.org/x/net
module.

Change-Id: I5747074b647cb8b7d4a5dc90ebb1114822a33f93
This commit is contained in:
Sharlatan Hellseher
2026-05-26 13:52:47 +01:00
parent fe48dc0361
commit 28d6a3abd2
+14 -3
View File
@@ -8213,7 +8213,7 @@ allocation and performance in mind.")
(package
(inherit go-github-com-gofiber-fiber-v2)
(name "go-github-com-gofiber-fiber-v3")
(version "3.2.0")
(version "3.3.0")
(source
(origin
(method git-fetch)
@@ -8222,10 +8222,21 @@ allocation and performance in mind.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1186zazs2pgib0rj0fxjg83vk314p4wz00xlizx3njm16drzf57b"))))
(base32 "189hqhbm9pvpl5g2n2yk3mvp0f4jx4s0w5ivmgh5li8plffc9iwk"))))
(arguments
(substitute-keyword-arguments arguments
((#:import-path _) "github.com/gofiber/fiber/v3")))
((#:import-path _) "github.com/gofiber/fiber/v3")
((#:embed-files _ #~())
#~(list
;; golang.org/x/net/publicsuffix/table.go:63:12: pattern
;; data/children: cannot embed irregular file data/children
"children"
;; golang.org/x/net/publicsuffix/table.go:48:12: pattern
;; data/nodes: cannot embed irregular file data/nodes
"nodes"
;; golang.org/x/net/publicsuffix/table.go:33:12: pattern data/text:
;; cannot embed irregular file data/text
"text"))))
(native-inputs
(list go-github-com-stretchr-testify
go-github-com-shamaton-msgpack-v3))