1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add go-github-com-c9s-goprocinfo.

* gnu/packages/golang-xyz.scm (go-github-com-c9s-goprocinfo): New variable.

Change-Id: Ie5f1736a63011f9912b9d764050b92cd20c3f41a
This commit is contained in:
Sharlatan Hellseher
2026-03-06 11:46:21 +00:00
committed by Andreas Enge
parent 76c48cb2c7
commit 4314135e65

View File

@@ -4189,6 +4189,31 @@ python-prompt-toolkit}, making it easier to build cross-platform command line
tools using Go.")
(license license:expat)))
(define-public go-github-com-c9s-goprocinfo
(package
(name "go-github-com-c9s-goprocinfo")
(version "0.0.0-20210130143923-c95fcf8c64a8")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/c9s/goprocinfo")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0krsj95cynsc5jqac5f9m2g78d3h06aak0fv5bsdljd4f6bykxv7"))))
(build-system go-build-system)
(arguments
(list
#:skip-build? #t
#:import-path "github.com/c9s/goprocinfo"))
(home-page "https://github.com/c9s/goprocinfo")
(synopsis "Linux /proc info parser for Go")
(description
"This package implements a functionality to parse @code{/proc}
information for Golang.")
(license license:expat)))
(define-public go-github-com-caarlos0-env
(package
(name "go-github-com-caarlos0-env")