1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: go-github-com-yookoala-realpath: Move to golang-xyz.

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

Change-Id: If95b002e659cf14c4ff28e518d951324ba416ce8
This commit is contained in:
Sharlatan Hellseher 2025-02-20 15:59:43 +00:00
parent 2e24868baf
commit 6ccb54e2e6
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 26 additions and 27 deletions

View file

@ -16841,6 +16841,32 @@ globs from things like your .gitignore file, and zsh. The \"**\" glob
represents a recursive wildcard matching zero-or-more directory levels deep.")
(license license:expat)))
(define-public go-github-com-yookoala-realpath
(let ((commit "d19ef9c409d9817c1e685775e53d361b03eabbc8")
(revision "0"))
(package
(name "go-github-com-yookoala-realpath")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/yookoala/realpath")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0qvz1dcdldf53rq69fli76z5k1vr7prx9ds1d5rpzgs68kwn40nw"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/yookoala/realpath"))
(home-page "https://github.com/yookoala/realpath")
(synopsis "@code{realpath} for Golang")
(description
"This package provides @code{realpath}, a Go module that when provided
with a valid relative path / alias path, it will return you with a string of
its real absolute path in the system.")
(license license:expat))))
;; XXX: The latest release v0.1.1 was in 2014, master branch has more changes
;; since that time, use the latest commit.
(define-public go-github-com-yosuke-furukawa-json5