1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 02:50:45 +02:00

gnu: go-github-com-cespare-mph: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-cespare-mph): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: Iaf690f78cb14c063b883c7b3a58a3150f9c3548c
This commit is contained in:
Sharlatan Hellseher 2025-01-09 20:26:37 +00:00
parent 5061bc7259
commit ef7c6b40c5
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 24 additions and 23 deletions

View file

@ -2261,6 +2261,30 @@ tools using Go.")
variables into structs.")
(license license:expat)))
(define-public go-github-com-cespare-mph
(package
(name "go-github-com-cespare-mph")
(version "0.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cespare/mph")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0mvd6bkvf3i3555kqkkr3k9jd4c25scjq4xad35sxpny8f72nbg1"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/cespare/mph"))
(home-page "https://github.com/cespare/mph")
(synopsis "Minimal perfect hashing in Go")
(description
"@code{mph} is a Go package that implements a minimal perfect hash table
over strings.")
(license license:expat)))
(define-public go-github-com-charlievieth-fastwalk
(package
(name "go-github-com-charlievieth-fastwalk")