3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: go-github-com-prometheus-procfs: Update to 0.0.3.

* gnu/packages/syncthing.scm (go-github-com-prometheus-procfs): Update
to 0.0.3.
[arguments]: Skip the tests.
This commit is contained in:
Leo Famulari 2019-07-24 12:13:37 -04:00
parent eebf6380a4
commit 2cdfaa0263
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -999,28 +999,29 @@ implementation.")
(license asl2.0))))
(define-public go-github-com-prometheus-procfs
(let ((commit "b15cd069a83443be3154b719d0cc9fe8117f09fb")
(revision "0"))
(package
(name "go-github-com-prometheus-procfs")
(version (git-version "0.0.0" revision commit))
(version "0.0.3")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/prometheus/procfs.git")
(commit commit)))
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1cr45wg2m40bj2za8f32mq09rjlcnk5kfam0h0hr8wcb015k4wxj"))))
"18c4m795fwng8f8qa395f3crvamlbk5y5afk8b5rzyisnmjq774y"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/prometheus/procfs"))
'(#:import-path "github.com/prometheus/procfs"
;; The tests require Go modules, which are not yet supported in Guix's
;; Go build system.
#:tests? #f))
(synopsis "Go library for reading @file{/proc}")
(description "The @code{procfs} Go package provides functions to retrieve
system, kernel, and process metrics from the @file{/proc} pseudo file system.")
(home-page "https://github.com/prometheus/procfs")
(license asl2.0))))
(license asl2.0)))
(define-public go-github-com-client-golang-prometheus-promhttp
(package