me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/syncthing.scm (go-github-com-prometheus-procfs): Update
to 0.0.11.
[propagated-inputs]: Add go-golang-org-x-sys.
master
Efraim Flashner 2020-05-26 09:49:11 +03:00
parent a63077f003
commit 3d2e2bf6b8
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 2 deletions

View File

@ -878,7 +878,7 @@ Prometheus metrics.")
(define-public go-github-com-prometheus-procfs (define-public go-github-com-prometheus-procfs
(package (package
(name "go-github-com-prometheus-procfs") (name "go-github-com-prometheus-procfs")
(version "0.0.4") (version "0.0.11")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
@ -887,13 +887,15 @@ Prometheus metrics.")
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1z5jq5rjala0a0di4nwk1rai0z9f73qwqj6mgcbpjbg2qknlb544")))) "1msc8bfywsmrgr2ryqjdqwkxiz1ll08r3qgvaka2507z1wpcpj2c"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (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 ;; The tests require Go modules, which are not yet supported in Guix's
;; Go build system. ;; Go build system.
#:tests? #f)) #:tests? #f))
(propagated-inputs
`(("go-golang-org-x-sys" ,go-golang-org-x-sys)))
(synopsis "Go library for reading @file{/proc}") (synopsis "Go library for reading @file{/proc}")
(description "The @code{procfs} Go package provides functions to retrieve (description "The @code{procfs} Go package provides functions to retrieve
system, kernel, and process metrics from the @file{/proc} pseudo file system.") system, kernel, and process metrics from the @file{/proc} pseudo file system.")