diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-02-10 16:24:01 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-02-13 14:33:15 +0000 |
commit | 0317445b08413d337c9d654bb15e22f685462d5f (patch) | |
tree | 18eb26d40b12265a4c0f8ba0f0d7d805af8f792a /gnu/packages/golang.scm | |
parent | 714462744a25eccd6a5b77bccc7a032cc01698f8 (diff) | |
download | guix-0317445b08413d337c9d654bb15e22f685462d5f.tar.gz |
gnu: go-golang-org-x-exp: Move to golang-build.
* gnu/packages/golang.scm (go-golang-org-x-exp): Move from here ... * gnu/packages/golang-build.scm: ... to here. Change-Id: I2253ac166a8830662360b14cec0fa301686dac22
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 64fcd09a8f..31e8065bff 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3347,33 +3347,6 @@ expressing configuration which is easy for both humans and machines to read.") (home-page "https://github.com/hashicorp/hcl") (license license:mpl2.0))) -(define-public go-golang-org-x-exp - (package - (name "go-golang-org-x-exp") - (version "0.0.0-20221004215720-b9f4876ce741") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://go.googlesource.com/exp") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "030b929xyg8dpp6f4qbyg63msi6zgzj9sqmvnyphfcrjkqf7nr41")))) - (build-system go-build-system) - (arguments - '(#:import-path "golang.org/x/exp" - ;; Source-only package - #:tests? #f - #:phases (modify-phases %standard-phases - (delete 'build)))) - (home-page "https://golang.org/x/exp") - (synopsis "Experimental and deprecated Go packages") - (description - "This subrepository holds experimental and deprecated (in the @code{old} -directory) packages.") - (license license:bsd-3))) - (define-public go-golang-org-x-tools (package (name "go-golang-org-x-tools") |