[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/32: gnu: go-github-com-alecthomas-chroma: Move to golang-xyz.
From: |
guix-commits |
Subject: |
17/32: gnu: go-github-com-alecthomas-chroma: Move to golang-xyz. |
Date: |
Mon, 19 Feb 2024 18:41:01 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit ee79286031e87fc7f2e5477a56a9c49b74971080
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Fri Feb 16 15:17:56 2024 +0000
gnu: go-github-com-alecthomas-chroma: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-alecthomas-chroma): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.
* gnu/packages/configuration-management.scm: Add (gnu packages
golang-xyz) module.
Change-Id: I0f5f7068f530b282f3636678e9edc4fad6c8c94a
---
gnu/packages/configuration-management.scm | 1 +
gnu/packages/golang-xyz.scm | 33 ++++++++++++++++++++++++++++++-
gnu/packages/golang.scm | 29 ---------------------------
3 files changed, 33 insertions(+), 30 deletions(-)
diff --git a/gnu/packages/configuration-management.scm
b/gnu/packages/configuration-management.scm
index 6632f429e2..d0105ea75c 100644
--- a/gnu/packages/configuration-management.scm
+++ b/gnu/packages/configuration-management.scm
@@ -23,6 +23,7 @@
#:use-module (gnu packages golang)
#:use-module (gnu packages golang-build)
#:use-module (gnu packages golang-web)
+ #:use-module (gnu packages golang-xyz)
#:use-module (gnu packages version-control)
#:use-module (gnu packages textutils)
#:use-module ((guix licenses) #:prefix license:)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index d6aa5d0538..a31cd74b3d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3,15 +3,16 @@
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
;;; Copyright © 2019 Brian Leung <bkleung89@gmail.com>
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com>
-;;; Copyright © 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
+;;; Copyright © 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;;
;;; This file is part of GNU Guix.
@@ -79,6 +80,36 @@
substitution.")
(license license:expat)))
+(define-public go-github-com-alecthomas-chroma
+ (package
+ (name "go-github-com-alecthomas-chroma")
+ (version "0.8.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/alecthomas/chroma")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "066a6rdmf670d3v5sc7chbn7db09ldgxjympb03pcqwk644dixb1"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/alecthomas/chroma"))
+ (native-inputs
+ (list go-github-com-dlclark-regexp2
+ go-github-com-alecthomas-assert
+ go-github-com-alecthomas-colour
+ go-github-com-alecthomas-repr
+ go-github-com-mattn-go-isatty
+ go-github-com-sergi-go-diff))
+ (home-page "https://github.com/alecthomas/chroma/")
+ (synopsis "General purpose syntax highlighter in pure Go")
+ (description
+ "Chroma takes source code and other structured text and converts it into
+syntax highlighted HTML, ANSI-coloured text, etc.")
+ (license license:expat)))
+
(define-public go-github-com-alecthomas-participle-v2
(package
(name "go-github-com-alecthomas-participle-v2")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index c22e4ba005..6eac90bef4 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -7643,35 +7643,6 @@ synchronizing plain text:
@end itemize\n")
(license license:expat)))
-(define-public go-github-com-alecthomas-chroma
- (package
- (name "go-github-com-alecthomas-chroma")
- (version "0.8.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/alecthomas/chroma")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "066a6rdmf670d3v5sc7chbn7db09ldgxjympb03pcqwk644dixb1"))))
- (build-system go-build-system)
- (arguments
- `(#:import-path "github.com/alecthomas/chroma"))
- (native-inputs
- (list go-github-com-dlclark-regexp2
- go-github-com-alecthomas-assert
- go-github-com-alecthomas-colour
- go-github-com-alecthomas-repr
- go-github-com-mattn-go-isatty
- go-github-com-sergi-go-diff))
- (home-page "https://github.com/alecthomas/chroma/")
- (synopsis "General purpose syntax highlighter in pure Go")
- (description "Chroma takes source code and other structured text and
-converts it into syntax highlighted HTML, ANSI-coloured text, etc.")
- (license license:expat)))
-
(define-public go-github-com-muesli-reflow-wordwrap
(package
(name "go-github-com-muesli-reflow-wordwrap")
- 01/32: gnu: go-github-com-goccy-go-json: Revert source snippet, (continued)
- 01/32: gnu: go-github-com-goccy-go-json: Revert source snippet, guix-commits, 2024/02/19
- 05/32: gnu: go-github-com-schollz-progressbar-v3: Remove examples., guix-commits, 2024/02/19
- 06/32: gnu: go-github-com-coreos-go-semver: Add missing input., guix-commits, 2024/02/19
- 03/32: gnu: go-github-com-mattn-go-colorable: Add missing input., guix-commits, 2024/02/19
- 04/32: gnu: go-github-com-mesilliac-pulse-simple: Remove examples., guix-commits, 2024/02/19
- 15/32: gnu: Add go-github-com-benbjohnson-clock., guix-commits, 2024/02/19
- 07/32: gnu: go-github-com-coreos-go-semver: Update to 0.3.1., guix-commits, 2024/02/19
- 09/32: gnu: go-golang-org-x-net-html: Add missing input., guix-commits, 2024/02/19
- 11/32: gnu: Add go-pixelmatch., guix-commits, 2024/02/19
- 14/32: gnu: Add go-github-com-golang-jwt-jwt-v5., guix-commits, 2024/02/19
- 17/32: gnu: go-github-com-alecthomas-chroma: Move to golang-xyz.,
guix-commits <=
- 19/32: gnu: go-github-com-alecthomas-chroma: Remove bundled files., guix-commits, 2024/02/19
- 10/32: gnu: Add go-github-com-orisano-pixelmatch., guix-commits, 2024/02/19
- 24/32: gnu: go-github-com-songmu-gitconfig: Fix build., guix-commits, 2024/02/19
- 18/32: gnu: go-github-com-alecthomas-chroma: Update to 0.10.0., guix-commits, 2024/02/19
- 20/32: gnu: Add go-github-com-alecthomas-chroma-v2., guix-commits, 2024/02/19
- 27/32: gnu: go-github-go-git: Remove labels., guix-commits, 2024/02/19
- 28/32: gnu: go-github-go-git: Adjust imports., guix-commits, 2024/02/19
- 23/32: gnu: go-github-com-songmu-gitconfig: Move to golang-xyz., guix-commits, 2024/02/19
- 12/32: gnu: Add go-github-com-coocood-freecache., guix-commits, 2024/02/19
- 16/32: gnu: Add go-github-com-dustin-gojson., guix-commits, 2024/02/19