From df81748146e38106142a6bf26d96b0b2b9767153 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 7 Sep 2025 07:47:53 +0100 Subject: [PATCH] gnu: Add go-github-com-mitchellh-go-ps. * gnu/packages/golang-xyz.scm (go-github-com-mitchellh-go-ps): New variable. Change-Id: I8489da85622221754d0ea516f8f90d30479e02cf --- gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index e592f07866d..bb3918d3e3d 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -14250,6 +14250,30 @@ the current user without cgo. This library does that, enabling cross-compilation.") (license license:expat))) +(define-public go-github-com-mitchellh-go-ps + (package + (name "go-github-com-mitchellh-go-ps") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mitchellh/go-ps") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ipcbz66x7q8xczi7cyfq06y7n7v0syvkp730vn9jrn7s8f5ag0z")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/mitchellh/go-ps")) + (home-page "https://github.com/mitchellh/go-ps") + (synopsis "Process List Library for Golang") + (description + "This package provides an API for finding and listing processes in a +platform-agnostic way.") + (license license:expat))) + (define-public go-github-com-mitchellh-go-wordwrap (package (name "go-github-com-mitchellh-go-wordwrap")