mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-17 12:30:38 +02:00
gnu: go-github-com-go-git-gcfg: Move to golang-vcs.
* gnu/packages/golang.scm (go-github-com-go-git-gcfg): Move from here ... * gnu/packages/golang-vcs.scm: ... to here. Add goalng-xyz module. Change-Id: I218c5e5c663ea5ba54cef9f26fec95912bbcac34
This commit is contained in:
parent
3464b38a75
commit
5f6cc183a2
2 changed files with 31 additions and 28 deletions
|
@ -1,4 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -25,7 +26,8 @@
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages golang-build)
|
#:use-module (gnu packages golang-build)
|
||||||
#:use-module (gnu packages golang-check)
|
#:use-module (gnu packages golang-check)
|
||||||
#:use-module (gnu packages golang-web))
|
#:use-module (gnu packages golang-web)
|
||||||
|
#:use-module (gnu packages golang-xyz))
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
;;;
|
;;;
|
||||||
|
@ -37,6 +39,34 @@
|
||||||
;;; Libraries:
|
;;; Libraries:
|
||||||
;;;
|
;;;
|
||||||
|
|
||||||
|
(define-public go-github-com-go-git-gcfg
|
||||||
|
(package
|
||||||
|
(name "go-github-com-go-git-gcfg")
|
||||||
|
(version "1.5.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/go-git/gcfg")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1lb14z4j35pwz2b2rbykkpsq515spwbndb00gwn2xlrzn949xb83"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/go-git/gcfg"
|
||||||
|
;; pass; got 10, error <nil>
|
||||||
|
;; failed to parse "a" as int: expected integer; *ptr==0
|
||||||
|
#:test-flags #~(list "-skip" "TestParseInt|TestScanFully")))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-pkg-errors
|
||||||
|
go-gopkg-in-warnings-v0))
|
||||||
|
(home-page "https://github.com/go-git/gcfg")
|
||||||
|
(synopsis "Gcfg reads INI-style configuration files into Go structs")
|
||||||
|
(description "Gcfg reads INI-style configuration files into Go structs.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-xanzy-go-gitlab
|
(define-public go-github-com-xanzy-go-gitlab
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-xanzy-go-gitlab")
|
(name "go-github-com-xanzy-go-gitlab")
|
||||||
|
|
|
@ -4871,33 +4871,6 @@ use one of our glamorous default themes.")
|
||||||
"A simple, efficient spring animation library for smooth, natural motion.")
|
"A simple, efficient spring animation library for smooth, natural motion.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-go-git-gcfg
|
|
||||||
(package
|
|
||||||
(name "go-github-com-go-git-gcfg")
|
|
||||||
(version "1.5.0")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/go-git/gcfg")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1lb14z4j35pwz2b2rbykkpsq515spwbndb00gwn2xlrzn949xb83"))))
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:import-path "github.com/go-git/gcfg"
|
|
||||||
;; pass; got 10, error <nil>
|
|
||||||
;; failed to parse "a" as int: expected integer; *ptr==0
|
|
||||||
#:test-flags #~(list "-skip" "TestParseInt|TestScanFully")))
|
|
||||||
(native-inputs
|
|
||||||
(list go-gopkg-in-warnings-v0 go-github-com-pkg-errors))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(home-page "https://github.com/go-git/gcfg/")
|
|
||||||
(synopsis "Gcfg reads INI-style configuration files into Go structs")
|
|
||||||
(description "Gcfg reads INI-style configuration files into Go structs.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public go-github-com-jba-templatecheck
|
(define-public go-github-com-jba-templatecheck
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-jba-templatecheck")
|
(name "go-github-com-jba-templatecheck")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue