mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: go-github-com-mattn-go-pointer: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-mattn-go-pointer): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: Iba5e71a870bbbce1dfea80ceafcd66e56883887b
This commit is contained in:
parent
cfc5f07ee9
commit
8b2d5e33c9
2 changed files with 26 additions and 26 deletions
|
@ -5,10 +5,10 @@
|
||||||
;;; 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 Vagrant Cascadian <vagrant@debian.org>
|
||||||
|
;;; 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 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 Martin Becze <mjbecze@riseup.net>
|
|
||||||
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
|
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
|
||||||
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
|
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
|
||||||
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
|
@ -1839,6 +1839,31 @@ (define-public go-github-com-mattn-go-isatty
|
||||||
whether a file descriptor points to a terminal and the type of the terminal.")
|
whether a file descriptor points to a terminal and the type of the terminal.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-mattn-go-pointer
|
||||||
|
(let ((commit "a0a44394634f41e4992b173b24f14fecd3318a67")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "go-github-com-mattn-go-pointer")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/mattn/go-pointer")
|
||||||
|
(commit commit)))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"09w7hcyc0zz2g23vld6jbcmq4ar27xakp1ldjvh549i5izf2anhz"))
|
||||||
|
(file-name (git-file-name name version))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/mattn/go-pointer"))
|
||||||
|
(home-page "https://github.com/mattn/go-pointer")
|
||||||
|
(synopsis "Utility for cgo")
|
||||||
|
(description
|
||||||
|
"This package allows for a cgo argument to be passed a Go pointer.")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public go-github-com-mattn-go-runewidth
|
(define-public go-github-com-mattn-go-runewidth
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-mattn-go-runewidth")
|
(name "go-github-com-mattn-go-runewidth")
|
||||||
|
|
|
@ -4351,31 +4351,6 @@ (define-public go-github-com-matrix-org-gomatrix
|
||||||
(description "This package provides a Golang Matrix client.")
|
(description "This package provides a Golang Matrix client.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-mattn-go-pointer
|
|
||||||
(let ((commit "a0a44394634f41e4992b173b24f14fecd3318a67")
|
|
||||||
(revision "1"))
|
|
||||||
(package
|
|
||||||
(name "go-github-com-mattn-go-pointer")
|
|
||||||
(version (git-version "0.0.0" revision commit))
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/mattn/go-pointer")
|
|
||||||
(commit commit)))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"09w7hcyc0zz2g23vld6jbcmq4ar27xakp1ldjvh549i5izf2anhz"))
|
|
||||||
(file-name (git-file-name name version))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/mattn/go-pointer"))
|
|
||||||
(home-page "https://github.com/mattn/go-pointer")
|
|
||||||
(synopsis "Utility for cgo")
|
|
||||||
(description
|
|
||||||
"This package allows for a cgo argument to be passed a Go pointer.")
|
|
||||||
(license license:expat))))
|
|
||||||
|
|
||||||
(define-public go-github-com-mgutz-ansi
|
(define-public go-github-com-mgutz-ansi
|
||||||
(let ((commit "9520e82c474b0a04dd04f8a40959027271bab992")
|
(let ((commit "9520e82c474b0a04dd04f8a40959027271bab992")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Reference in a new issue