From 28d6a3abd2d431a72a007a53aee75dcd6da3b4b3 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 26 May 2026 13:52:47 +0100 Subject: [PATCH] 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 data directories from golang.org/x/net module. Change-Id: I5747074b647cb8b7d4a5dc90ebb1114822a33f93 --- gnu/packages/golang-web.scm | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 04631faf97b..14f801bab31 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -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))