about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2020-04-23 12:48:19 +0200
committerMichael Weiss <dev.primeos@gmail.com>2020-04-23 12:51:09 +0200
commit58f8e4a8c2d1c258710ec8389cc6615abf6463c7 (patch)
treed2baacbf889b07ce4b5fc529f28bbaba441b8a54 /pkgs/tools
parent461a252bee3768c04017ddd67564db80c09befd0 (diff)
downloadnixlib-58f8e4a8c2d1c258710ec8389cc6615abf6463c7.tar
nixlib-58f8e4a8c2d1c258710ec8389cc6615abf6463c7.tar.gz
nixlib-58f8e4a8c2d1c258710ec8389cc6615abf6463c7.tar.bz2
nixlib-58f8e4a8c2d1c258710ec8389cc6615abf6463c7.tar.lz
nixlib-58f8e4a8c2d1c258710ec8389cc6615abf6463c7.tar.xz
nixlib-58f8e4a8c2d1c258710ec8389cc6615abf6463c7.tar.zst
nixlib-58f8e4a8c2d1c258710ec8389cc6615abf6463c7.zip
inxi: 3.0.38-1 -> 3.1.00-1
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/inxi/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/tools/system/inxi/default.nix b/pkgs/tools/system/inxi/default.nix
index f5b5d4ef7a2a..c1697e375e01 100644
--- a/pkgs/tools/system/inxi/default.nix
+++ b/pkgs/tools/system/inxi/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "inxi";
-  version = "3.0.38-1";
+  version = "3.1.00-1";
 
   src = fetchFromGitHub {
     owner = "smxi";
     repo = "inxi";
     rev = version;
-    sha256 = "1qw3sxgd3ly916bzzl3873s3flngwd3vh57slw0shsj7ivz8bfnm";
+    sha256 = "0md6yfd297l8695g0rsbs4mm74dc3k00rfjl4x2n4i33mkylp6qa";
   };
 
   buildInputs = [ perl makeWrapper ];
@@ -24,6 +24,13 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "A full featured CLI system information tool";
+    longDescription = ''
+      inxi is a command line system information script built for console and
+      IRC. It is also used a debugging tool for forum technical support to
+      quickly ascertain users' system configurations and hardware. inxi shows
+      system hardware, CPU, drivers, Xorg, Desktop, Kernel, gcc version(s),
+      Processes, RAM usage, and a wide variety of other useful information.
+    '';
     homepage = "https://smxi.org/docs/inxi.htm";
     changelog = "https://github.com/smxi/inxi/blob/${version}/inxi.changelog";
     license = licenses.gpl3Plus;