diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-13 10:08:07 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-09 21:33:43 +0000 |
commit | 60498713fde47ba76c9f99bcd80b7b9c0948a8ae (patch) | |
tree | f9e40df9434179aad9c8969052fb2cd4e7150d59 /gnu/packages/golang-xyz.scm | |
parent | c6683a148f8cc44e9bc218a864f3e4224fb3f94f (diff) | |
download | guix-60498713fde47ba76c9f99bcd80b7b9c0948a8ae.tar.gz guix-60498713fde47ba76c9f99bcd80b7b9c0948a8ae.zip |
gnu: go-github-com-google-renameio: Move to golang-build.
* gnu/packages/golang-xyz.scm (go-github-com-google-renameio,
go-github-com-google-renameio-v2): Move from here ...
* gnu/packages/golang-build.scm: ... to here.
Change-Id: I0323f61120c42f1e4249a3279576d50789c418d8
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index d8767a9ba5..f765fcb108 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3254,47 +3254,6 @@ execution.") "The chardet package ports character set detection from ICU to Go.") (license license:expat))) -(define-public go-github-com-google-renameio - (package - (name "go-github-com-google-renameio") - (version "1.0.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/renameio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1qn84nra9nxqyqg4i496b6ijbhnxvx66hdndwl7qh7r6q8lz2ba5")))) - (build-system go-build-system) - (arguments - (list - #:import-path "github.com/google/renameio")) - (home-page "https://github.com/google/renameio/") - (synopsis "Atomically create or replace a file or symbolic link") - (description - "@code{renameio} Go package provides a way to atomically create or -replace a file or symbolic link.") - (license license:asl2.0))) - -(define-public go-github-com-google-renameio-v2 - (package/inherit go-github-com-google-renameio - (name "go-github-com-google-renameio-v2") - (version "2.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/renameio") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "13vc7p43zz5pmgli4k18b15khxpca1zd8v1ga0ryq7ddyz55fg7i")))) - (arguments - (list - #:import-path "github.com/google/renameio/v2")))) - (define-public go-github-com-google-subcommands (package (name "go-github-com-google-subcommands") |