gnu: Add go-github-com-ucarion-urlpath.

* gnu/packages/golang-web.scm (go-github-com-ucarion-urlpath): New variable.

Change-Id: If11c5bfb6c6457037775d7d6ef64c47244fdaef7
This commit is contained in:
Sharlatan Hellseher 2024-08-25 22:52:59 +01:00
parent 2657da33fd
commit dd1cd47d15
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -4325,6 +4325,31 @@ (define-public go-github-com-tv42-httpunix
sockets.")
(license license:expat))))
(define-public go-github-com-ucarion-urlpath
(package
(name "go-github-com-ucarion-urlpath")
(version "0.0.0-20200424170820-7ccc79b76bbb")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ucarion/urlpath")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "12ns9lqdz566agdp4y0whgksmidi0zp7759akvx0b79mjzyvypax"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/ucarion/urlpath"))
(home-page "https://github.com/ucarion/urlpath")
(synopsis "REST-like URL path patterns matching")
(description
"Package urlpath matches paths against a template. It's meant for
applications that take in REST-like URL paths, and need to validate and
extract data from those paths.")
(license license:expat)))
(define-public go-github-com-ugorji-go-codec
(package
(name "go-github-com-ugorji-go-codec")