[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/32: gnu: go-github-com-songmu-gitconfig: Move to golang-xyz.
From: |
guix-commits |
Subject: |
23/32: gnu: go-github-com-songmu-gitconfig: Move to golang-xyz. |
Date: |
Mon, 19 Feb 2024 18:41:13 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit efa4809384e4b82395818431b1d37a0dbfe89ba5
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sat Feb 17 00:35:59 2024 +0000
gnu: go-github-com-songmu-gitconfig: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-songmu-gitconfig): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.
* gnu/packages/version-control.scm: Add (gnu packages golang-xyx)
module.
Change-Id: Ibab2595d981d46096501bb8ab495e899d2aacf7d
---
gnu/packages/golang-xyz.scm | 28 ++++++++++++++++++++++++++++
gnu/packages/golang.scm | 26 --------------------------
gnu/packages/version-control.scm | 1 +
3 files changed, 29 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 32b9be40b6..ff62b83995 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3,6 +3,7 @@
;;; 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 Joseph LaFreniere <joseph@lafreniere.xyz>
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
@@ -1136,6 +1137,33 @@ efficiently works with standard packages like @code{io},
@code{bufio}, etc..
Use waterutil with it to work with TUN/TAP packets/frames.")
(license license:bsd-3)))
+(define-public go-github-com-songmu-gitconfig
+ (package
+ (name "go-github-com-songmu-gitconfig")
+ (version "0.1.0")
+ (home-page "https://github.com/songmu/gitconfig")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1y01h496a7pfj1g2bclls5b0nl3vnj7nz610jj1dzq9kxrwxk7fk"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/Songmu/gitconfig"
+ ;; Package's tests appear to be hardcoded to the author's gitconfig
+ ;; and require network access.
+ #:tests? #f))
+ (propagated-inputs
+ (list go-github-com-goccy-yaml))
+ (synopsis "Go library to get configuration values from gitconfig")
+ (description
+ "@{gitconfig} is a package to get configuration values from gitconfig.")
+ (license license:expat)))
+
(define-public go-github-com-stathat-go
(let ((commit "74669b9f388d9d788c97399a0824adbfee78400e")
(revision "0"))
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 6eac90bef4..e95cd235da 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -8960,32 +8960,6 @@ modifying them.")
parsers, and related tools.")
(license license:expat))))
-(define-public go-github-com-songmu-gitconfig
- (package
- (name "go-github-com-songmu-gitconfig")
- (version "0.1.0")
- (home-page "https://github.com/songmu/gitconfig")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url home-page)
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1y01h496a7pfj1g2bclls5b0nl3vnj7nz610jj1dzq9kxrwxk7fk"))))
- (build-system go-build-system)
- (arguments
- `(#:import-path "github.com/Songmu/gitconfig"
- ;; Package's tests appear to be hardcoded to the author's gitconfig
- ;; and require network access.
- #:tests? #f))
- (propagated-inputs
- (list go-github-com-goccy-yaml))
- (synopsis "Go library to get configuration values from gitconfig")
- (description "@{gitconfig} is a package to get configuration values from
gitconfig.")
- (license license:expat)))
-
(define-public go-github-com-akosmarton-papipes
(let ((commit "3c63b4919c769c9c2b2d07e69a98abb0eb47fe64")
(revision "0"))
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index afef900bbb..a7ac89b7d9 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -110,6 +110,7 @@
#:use-module (gnu packages golang-check)
#:use-module (gnu packages golang-crypto)
#:use-module (gnu packages golang-web)
+ #:use-module (gnu packages golang-xyz)
#:use-module (gnu packages groff)
#:use-module (gnu packages guile)
#:use-module (gnu packages guile-xyz)
- 11/32: gnu: Add go-pixelmatch., (continued)
- 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, 2024/02/19
- 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 <=
- 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
- 22/32: gnu: go-github-com-alecthomas-assert-v2: Update to 2.5.0., guix-commits, 2024/02/19
- 26/32: gnu: ghq: Fix build., guix-commits, 2024/02/19
- 29/32: gnu: Add go-github-com-bmatcuk-doublestar-v2., guix-commits, 2024/02/19
- 30/32: gnu: Add go-github-com-google-go-github-v33., guix-commits, 2024/02/19
- 31/32: gnu: chezmoi: Sort inputs alphabetically., guix-commits, 2024/02/19
- 13/32: gnu: Add go-github-com-golang-jwt-jwt-v4., guix-commits, 2024/02/19
- 32/32: gnu: chezmoi: Update to 1.8.10., guix-commits, 2024/02/19
- 08/32: gnu: go-github-com-valyala-fasthttp: Add missing input., guix-commits, 2024/02/19