sharlatan pushed a commit to branch go-team in repository guix. commit 2c41d292f9ef924bb4f12c2c5ac8047f544c23e0 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Thu Feb 20 15:59:43 2025 +0000
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 --- gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++ gnu/packages/golang.scm | 27 --------------------------- 2 files changed, 26 insertions(+), 27 deletions(-) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index ba5826cca5..8b2d9bac68 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -16784,6 +16784,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 diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index f6a6f2fda0..74d8a3f8f3 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1701,33 +1701,6 @@ regexps. This breaks compatibility with Lua, but Unicode support breaks it anyways and Go regexps are more powerful.") (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)))) - (define-public go-github-com-stevedonovan-luar (let ((commit "22d247e5366095f491cd83edf779ee99a78f5ead") (revision "0"))