mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 09:23:37 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
107 lines
2.5 KiB
Nix
107 lines
2.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitea,
|
|
perl,
|
|
perlPackages,
|
|
makeWrapper,
|
|
ps,
|
|
dnsutils, # dig is recommended for multiple categories
|
|
withRecommends ? false, # Install (almost) all recommended tools (see --recommends)
|
|
withRecommendedSystemPrograms ? withRecommends,
|
|
util-linuxMinimal,
|
|
dmidecode,
|
|
file,
|
|
hddtemp,
|
|
iproute2,
|
|
ipmitool,
|
|
usbutils,
|
|
kmod,
|
|
lm_sensors,
|
|
smartmontools,
|
|
binutils,
|
|
tree,
|
|
upower,
|
|
pciutils,
|
|
withRecommendedDisplayInformationPrograms ? withRecommends,
|
|
mesa-demos,
|
|
xorg,
|
|
}:
|
|
|
|
let
|
|
prefixPath = programs: "--prefix PATH ':' '${lib.makeBinPath programs}'";
|
|
recommendedSystemPrograms = lib.optionals withRecommendedSystemPrograms [
|
|
util-linuxMinimal
|
|
dmidecode
|
|
file
|
|
hddtemp
|
|
iproute2
|
|
ipmitool
|
|
usbutils
|
|
kmod
|
|
lm_sensors
|
|
smartmontools
|
|
binutils
|
|
tree
|
|
upower
|
|
pciutils
|
|
];
|
|
recommendedDisplayInformationPrograms = lib.optionals withRecommendedDisplayInformationPrograms (
|
|
[ mesa-demos ]
|
|
++ (with xorg; [
|
|
xdpyinfo
|
|
xprop
|
|
xrandr
|
|
])
|
|
);
|
|
programs =
|
|
[
|
|
ps
|
|
dnsutils
|
|
] # Core programs
|
|
++ recommendedSystemPrograms
|
|
++ recommendedDisplayInformationPrograms;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "inxi";
|
|
version = "3.3.35-1";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "smxi";
|
|
repo = "inxi";
|
|
rev = version;
|
|
hash = "sha256-wWG/fs+tZIiFI+dcqfwXeh9RxT2zJDiAZoizhAAu60Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ perl ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp inxi $out/bin/
|
|
wrapProgram $out/bin/inxi \
|
|
--set PERL5LIB "${perlPackages.makePerlPath (with perlPackages; [ CpanelJSONXS ])}" \
|
|
${prefixPath programs}
|
|
mkdir -p $out/share/man/man1
|
|
cp inxi.1 $out/share/man/man1/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "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;
|
|
platforms = platforms.unix;
|
|
maintainers = [ ];
|
|
mainProgram = "inxi";
|
|
};
|
|
}
|