diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-07-04 17:44:49 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-07-04 17:47:45 +0200 |
commit | 9e63bafafbe7a7c2d9804fae62302ac8a7e90090 (patch) | |
tree | e3eef3a7ce9ad353a2ce7eec5bb0ea52d29f4a9f | |
parent | 34bbbe6082694cab02a12c87beab20c1d8503f7f (diff) | |
download | guix-9e63bafafbe7a7c2d9804fae62302ac8a7e90090.tar.gz guix-9e63bafafbe7a7c2d9804fae62302ac8a7e90090.zip |
gnu: procenv: Update to 0.58.
* gnu/packages/linux.scm (procenv): Update to 0.58.
-rw-r--r-- | gnu/packages/linux.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 1b1a1d4dad..da3c8755f6 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -7011,7 +7011,7 @@ the MTP device as a file system.") (define-public procenv (package (name "procenv") - (version "0.55") + (version "0.58") (source (origin (method git-fetch) @@ -7020,7 +7020,7 @@ the MTP device as a file system.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "13fnr4gfj2xlxghw93m5gsxzlwzv3s6jv9hja0w0pb23hlncbmhy")))) + (base32 "137n630qzml4yraqzp2fij8nzn8341nf8d58yzfhk8ddlzi60sfm")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) @@ -7033,7 +7033,8 @@ the MTP device as a file system.") ("libcap" ,libcap) ("libselinux" ,libselinux))) (synopsis "Utility to show process environment") - (description "Procenv is a command-line tool that displays as much detail about + (description + "Procenv is a command-line tool that displays as much detail about itself and its environment as possible. It can be used as a test tool, to understand the type of environment a process runs in, and for comparing system environments.") |