nixpkgs/pkgs/tools/system/inxi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
2.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, perl, perlPackages, makeWrapper
, ps, dnsutils # dig is recommended for multiple categories
, withRecommends ? false # Install (almost) all recommended tools (see --recommends)
2020-11-24 16:29:28 +01:00
, withRecommendedSystemPrograms ? withRecommends, util-linuxMinimal, dmidecode
2021-03-14 17:05:16 +01:00
, file, hddtemp, iproute2, ipmitool, usbutils, kmod, lm_sensors, smartmontools
, binutils, tree, upower, pciutils
, withRecommendedDisplayInformationPrograms ? withRecommends, glxinfo, xorg
}:
2019-01-13 19:37:32 +01:00
let
prefixPath = programs:
2021-01-15 10:19:50 +01:00
"--prefix PATH ':' '${lib.makeBinPath programs}'";
recommendedSystemPrograms = lib.optionals withRecommendedSystemPrograms [
2021-03-14 17:05:16 +01:00
util-linuxMinimal dmidecode file hddtemp iproute2 ipmitool usbutils kmod
lm_sensors smartmontools binutils tree upower pciutils
];
recommendedDisplayInformationPrograms = lib.optionals
withRecommendedDisplayInformationPrograms
([ glxinfo ] ++ (with xorg; [ xdpyinfo xprop xrandr ]));
programs = [ ps dnsutils ] # Core programs
++ recommendedSystemPrograms
++ recommendedDisplayInformationPrograms;
in stdenv.mkDerivation rec {
pname = "inxi";
2021-04-17 18:58:46 +02:00
version = "3.3.04-1";
2019-01-13 19:37:32 +01:00
src = fetchFromGitHub {
owner = "smxi";
repo = "inxi";
rev = version;
2021-04-17 18:58:46 +02:00
sha256 = "sha256-/EutIHQGLiRcRD/r8LJYG7oJBb7EAhR5cn6QiC7zMOc=";
2019-01-13 19:37:32 +01:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ perl ];
2019-01-13 19:37:32 +01:00
installPhase = ''
mkdir -p $out/bin
cp inxi $out/bin/
wrapProgram $out/bin/inxi \
--set PERL5LIB "${perlPackages.makePerlPath (with perlPackages; [ CpanelJSONXS ])}" \
${prefixPath programs}
2019-01-13 19:37:32 +01:00
mkdir -p $out/share/man/man1
cp inxi.1 $out/share/man/man1/
'';
meta = with lib; {
2019-01-13 19:37:32 +01:00
description = "A full featured CLI system information tool";
2020-04-23 12:48:19 +02:00
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.
'';
2020-03-17 19:34:54 +01:00
homepage = "https://smxi.org/docs/inxi.htm";
changelog = "https://github.com/smxi/inxi/blob/${version}/inxi.changelog";
2019-01-13 19:37:32 +01:00
license = licenses.gpl3Plus;
platforms = platforms.unix;
2021-04-17 19:00:16 +02:00
maintainers = with maintainers; [ ];
2019-01-13 19:37:32 +01:00
};
}