mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: go-github-com-rcrowley-go-metrics: Move to golang-xyz.
* gnu/packages/syncthing.scm (go-github-com-rcrowley-go-metrics): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: Id153e4b8295c1430077941c5e4ee854ef28a56fa
This commit is contained in:
parent
ae60a953d6
commit
3da105865c
2 changed files with 32 additions and 31 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2018, 2019 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2017, 2018, 2019 Leo Famulari <leo@famulari.name>
|
||||||
|
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
|
;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
|
||||||
;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
|
;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
|
||||||
;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
|
;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
|
||||||
|
@ -353,6 +354,36 @@ (define-public go-github-com-prometheus-client-model
|
||||||
(home-page "https://github.com/prometheus/client_model")
|
(home-page "https://github.com/prometheus/client_model")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public go-github-com-rcrowley-go-metrics
|
||||||
|
(let ((commit "cac0b30c2563378d434b5af411844adff8e32960")
|
||||||
|
(revision "2"))
|
||||||
|
(package
|
||||||
|
(name "go-github-com-rcrowley-go-metrics")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/rcrowley/go-metrics")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1hfxffnpaw49pr3wrkbzq3pnv3nyzsvk5dxndv0yz70xlrbg8a04"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
;; Arbitrary precision tests are known to be broken on aarch64, ppc64le
|
||||||
|
;; and s390x. See: https://github.com/rcrowley/go-metrics/issues/249
|
||||||
|
`(#:tests? ,(not (string-prefix? "aarch64" (or (%current-target-system)
|
||||||
|
(%current-system))))
|
||||||
|
#:import-path "github.com/rcrowley/go-metrics"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-stathat-go))
|
||||||
|
(synopsis "Go port of Coda Hale's Metrics library")
|
||||||
|
(description "This package provides a Go implementation of Coda Hale's
|
||||||
|
Metrics library.")
|
||||||
|
(home-page "https://github.com/rcrowley/go-metrics")
|
||||||
|
(license license:bsd-2))))
|
||||||
|
|
||||||
(define-public go-github-com-skip2-go-qrcode
|
(define-public go-github-com-skip2-go-qrcode
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-skip2-go-qrcode")
|
(name "go-github-com-skip2-go-qrcode")
|
||||||
|
|
|
@ -542,36 +542,6 @@ (define-public go-github-com-stathat-go
|
||||||
(home-page "https://github.com/stathat/go")
|
(home-page "https://github.com/stathat/go")
|
||||||
(license expat))))
|
(license expat))))
|
||||||
|
|
||||||
(define-public go-github-com-rcrowley-go-metrics
|
|
||||||
(let ((commit "cac0b30c2563378d434b5af411844adff8e32960")
|
|
||||||
(revision "2"))
|
|
||||||
(package
|
|
||||||
(name "go-github-com-rcrowley-go-metrics")
|
|
||||||
(version (git-version "0.0.0" revision commit))
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/rcrowley/go-metrics")
|
|
||||||
(commit commit)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1hfxffnpaw49pr3wrkbzq3pnv3nyzsvk5dxndv0yz70xlrbg8a04"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
;; Arbitrary precision tests are known to be broken on aarch64, ppc64le
|
|
||||||
;; and s390x. See: https://github.com/rcrowley/go-metrics/issues/249
|
|
||||||
`(#:tests? ,(not (string-prefix? "aarch64" (or (%current-target-system)
|
|
||||||
(%current-system))))
|
|
||||||
#:import-path "github.com/rcrowley/go-metrics"))
|
|
||||||
(propagated-inputs
|
|
||||||
(list go-github-com-stathat-go))
|
|
||||||
(synopsis "Go port of Coda Hale's Metrics library")
|
|
||||||
(description "This package provides a Go implementation of Coda Hale's
|
|
||||||
Metrics library.")
|
|
||||||
(home-page "https://github.com/rcrowley/go-metrics")
|
|
||||||
(license bsd-2))))
|
|
||||||
|
|
||||||
(define-public go-github-com-sasha-s-go-deadlock
|
(define-public go-github-com-sasha-s-go-deadlock
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-sasha-s-go-deadlock")
|
(name "go-github-com-sasha-s-go-deadlock")
|
||||||
|
|
Loading…
Reference in a new issue