[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69042] [PATCH 21/30] gnu: go-golang-org-x-term: Move to (gnu packag
From: |
Sharlatan Hellseher |
Subject: |
[bug#69042] [PATCH 21/30] gnu: go-golang-org-x-term: Move to (gnu packages-build). |
Date: |
Sun, 11 Feb 2024 10:53:10 +0000 |
* gnu/packages/golang.scm (go-golang-org-x-term): Move from here ...
* gnu/packages/golang-build.scm: ... to here.
* gnu/packages/disk.scm: Add (gnu packages golang-build) module.
* gnu/packages/image-viewers.scm: As above.
Change-Id: Ibdb637bb129437ef74a0270fd44edc8804bb3055
---
gnu/packages/disk.scm | 1 +
gnu/packages/golang-build.scm | 25 +++++++++++++++++++++++++
gnu/packages/golang.scm | 24 ------------------------
gnu/packages/image-viewers.scm | 1 +
4 files changed, 27 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm
index 165f0a8a74..b0117d77ce 100644
--- a/gnu/packages/disk.scm
+++ b/gnu/packages/disk.scm
@@ -69,6 +69,7 @@ (define-module (gnu packages disk)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gnupg)
#:use-module (gnu packages golang)
+ #:use-module (gnu packages golang-build)
#:use-module (gnu packages graphics)
#:use-module (gnu packages gtk)
#:use-module (gnu packages guile)
diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm
index 7b8653960d..db94ad2c7b 100644
--- a/gnu/packages/golang-build.scm
+++ b/gnu/packages/golang-build.scm
@@ -4,11 +4,13 @@
;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
;;; Copyright © 2020 Vagrant Cascadian <vagrant@debian.org>
+;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2021 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2021 hackeryarn <artemchernyak@gmail.com>
;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2023 Felix Lechner <felix.lechner@lease-up.com>
;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com>
+;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
;;;
;;; This file is part of GNU Guix.
@@ -267,6 +269,29 @@ (define-public go-golang-org-x-sys
support for low-level interaction with the operating system.")
(license license:bsd-3))))
+(define-public go-golang-org-x-term
+ (package
+ (name "go-golang-org-x-term")
+ (version "0.3.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://go.googlesource.com/term")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "16s3d62fgdhiqvcib61s5pwxp08hhrmzx8bdv5zk1w1krjizdarl"))))
+ (build-system go-build-system)
+ (arguments '(#:import-path "golang.org/x/term"))
+ (propagated-inputs
+ (list go-golang-org-x-sys))
+ (home-page "https://pkg.go.dev/golang.org/x/term")
+ (synopsis "Go terminal/console support")
+ (description "@code{term} provides support functions for dealing with
+terminals, as commonly found on Unix systems.")
+ (license license:bsd-3)))
+
(define-public go-golang-org-x-xerrors
(let ((commit "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca")
(revision "0"))
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 8bfabb9da9..240c87c3ba 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9659,30 +9659,6 @@ (define-public go-github-com-dustin-go-humanize
back.")
(license license:expat)))
-(define-public go-golang-org-x-term
- (package
- (name "go-golang-org-x-term")
- (version "0.3.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://go.googlesource.com/term")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "16s3d62fgdhiqvcib61s5pwxp08hhrmzx8bdv5zk1w1krjizdarl"))))
- (build-system go-build-system)
- (arguments '(#:import-path "golang.org/x/term"))
- (propagated-inputs
- (list go-golang-org-x-sys))
- (home-page "https://pkg.go.dev/golang.org/x/term")
- (synopsis "Go terminal/console support")
- (description "@code{term} provides support functions for dealing with
-terminals, as commonly found on Unix systems.")
- (license license:bsd-3)))
-
(define-public go-github-com-klauspost-compress
(package
(name "go-github-com-klauspost-compress")
diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm
index 206b91c878..f2b87268f0 100644
--- a/gnu/packages/image-viewers.scm
+++ b/gnu/packages/image-viewers.scm
@@ -77,6 +77,7 @@ (define-module (gnu packages image-viewers)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnome)
#:use-module (gnu packages golang)
+ #:use-module (gnu packages golang-build)
#:use-module (gnu packages gtk)
#:use-module (gnu packages graphics)
#:use-module (gnu packages image)
--
2.41.0
- [bug#69042] [PATCH 23/30] gnu: go-golang-org-x-text: Move to (gnu packages-build)., (continued)
- [bug#69042] [PATCH 23/30] gnu: go-golang-org-x-text: Move to (gnu packages-build)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 28/30] gnu: go-github-com-klauspost-compress: Move to (gnu packages-compression)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 27/30] gnu: go-golang-org-x-crypto: Move to (gnu packages-build)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 24/30] gnu: go-github-com-yuin-goldmark: Move to (gnu packages-build)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 30/30] gnu: go-github.com-ulikunitz-xz: Move to (gnu packages-compression)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 06/30] gnu: go-golang-org-x-sys: Move to (gnu packages golang-build)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 07/30] gnu: go-github-com-mreiferson-go-svc: Move to (gnu packages golang-xyz)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 08/30] gnu: go-github-com-nsqio-go-nsq: Move to (gnu packages golang-xyz)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 09/30] gnu: go-github-com-nsqio-go-diskqueue: Move to (gnu packages golang-xyz)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 10/30] gnu: go-github-com-davecgh-go-spew: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 21/30] gnu: go-golang-org-x-term: Move to (gnu packages-build).,
Sharlatan Hellseher <=
- [bug#69042] [PATCH 11/30] gnu: go-github-com-burntsushi-toml: Move to (gnu packages golang-xyz)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 29/30] gnu: go-github-com-andybalholm-brotli: Move to (gnu packages-compression)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 26/30] gnu: go-golang-org-x-image: Move to (gnu packages-build)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 20/30] gnu: go-golang-org-x-sync: Move to (gnu packages-build)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 01/30] gnu: Add (gnu packages golang-build) module., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 22/30] gnu: go-golang-org-x-time: Move to (gnu packages-build)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 03/30] gnu: go-golang-org-x-net: Move to (gnu packages golang-build)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 16/30] gnu: go-golang-org-x-exp: Move to (gnu packages golang-build)., Sharlatan Hellseher, 2024/02/11
- [bug#69042] [PATCH 12/30] gnu: go-github-com-bmizerany-perks-quantile: Move to (gnu packages golang-xyz)., Sharlatan Hellseher, 2024/02/11