gnu: go-github-com-mattn-go-zglob: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-mattn-go-zglob): Move from here ... * gnu/packages/golang-xyz.scm: ... to here * gnu/packages/password-utils.scm: Add (gnu packages golang-xyz) module. Change-Id: I3777ff257c6baa91930e141f84f9da94be0634b6master
parent
8b2d5e33c9
commit
d610a77e88
gnu/packages
|
@ -4,9 +4,10 @@
|
||||||
;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com>
|
;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com>
|
||||||
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
|
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
|
||||||
;;; Copyright © 2019 Brian Leung <bkleung89@gmail.com>
|
;;; Copyright © 2019 Brian Leung <bkleung89@gmail.com>
|
||||||
;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org>
|
;;; Copyright © 2019, 2021 Vagrant Cascadian <vagrant@debian.org>
|
||||||
;;; Copyright © 2019-2021 Martin Becze <mjbecze@riseup.net>
|
;;; Copyright © 2019-2021 Martin Becze <mjbecze@riseup.net>
|
||||||
;;; Copyright © 2019-2022 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2019-2022 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2020 Alex Griffin <a@ajgrf.com>
|
||||||
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
||||||
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
|
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
|
||||||
|
@ -1920,6 +1921,30 @@ string.")
|
||||||
the @code{cpan} module @code{Parse::CommandLine}.")
|
the @code{cpan} module @code{Parse::CommandLine}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-mattn-go-zglob
|
||||||
|
(package
|
||||||
|
(name "go-github-com-mattn-go-zglob")
|
||||||
|
(version "0.0.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/mattn/go-zglob")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1923lvakm66mzy62jmngdvcmbmiqclinsvnghs3907rgygnx1qc1"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/mattn/go-zglob"))
|
||||||
|
(home-page "https://github.com/mattn/go-zglob")
|
||||||
|
(synopsis "Glob library that descends into other directories")
|
||||||
|
(description
|
||||||
|
"This package provides a glob library that implements descending into
|
||||||
|
other directories. It is optimized for filewalking.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-miekg-dns
|
(define-public go-github-com-miekg-dns
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-miekg-dns")
|
(name "go-github-com-miekg-dns")
|
||||||
|
|
|
@ -6601,28 +6601,6 @@ improved and cleaner API.")
|
||||||
Proxy functionality.")
|
Proxy functionality.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-mattn-go-zglob
|
|
||||||
(package
|
|
||||||
(name "go-github-com-mattn-go-zglob")
|
|
||||||
(version "0.0.3")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/mattn/go-zglob")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1923lvakm66mzy62jmngdvcmbmiqclinsvnghs3907rgygnx1qc1"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:import-path "github.com/mattn/go-zglob"))
|
|
||||||
(home-page "https://github.com/mattn/go-zglob")
|
|
||||||
(synopsis "Glob library that descends into other directories")
|
|
||||||
(description "A glob library that implements descending into other
|
|
||||||
directories. It is optimized for filewalking.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-github-com-mattn-go-sqlite3
|
(define-public go-github-com-mattn-go-sqlite3
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-mattn-go-sqlite3")
|
(name "go-github-com-mattn-go-sqlite3")
|
||||||
|
|
|
@ -94,6 +94,7 @@
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
#:use-module (gnu packages golang-build)
|
#:use-module (gnu packages golang-build)
|
||||||
#:use-module (gnu packages golang-crypto)
|
#:use-module (gnu packages golang-crypto)
|
||||||
|
#:use-module (gnu packages golang-xyz)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
#:use-module (gnu packages kerberos)
|
#:use-module (gnu packages kerberos)
|
||||||
|
|
Reference in New Issue