3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/system/inxi/default.nix

41 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, perl, perlPackages, makeWrapper }:
2019-01-13 18:37:32 +00:00
stdenv.mkDerivation rec {
pname = "inxi";
2020-04-23 11:48:19 +01:00
version = "3.1.00-1";
2019-01-13 18:37:32 +00:00
src = fetchFromGitHub {
owner = "smxi";
repo = "inxi";
rev = version;
2020-04-23 11:48:19 +01:00
sha256 = "0md6yfd297l8695g0rsbs4mm74dc3k00rfjl4x2n4i33mkylp6qa";
2019-01-13 18:37:32 +00:00
};
buildInputs = [ perl makeWrapper ];
2019-01-13 18:37:32 +00:00
installPhase = ''
mkdir -p $out/bin
cp inxi $out/bin/
wrapProgram $out/bin/inxi \
--set PERL5LIB "${perlPackages.makePerlPath (with perlPackages; [ CpanelJSONXS ])}"
2019-01-13 18:37:32 +00:00
mkdir -p $out/share/man/man1
cp inxi.1 $out/share/man/man1/
'';
meta = with stdenv.lib; {
description = "A full featured CLI system information tool";
2020-04-23 11:48:19 +01: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 18:34:54 +00:00
homepage = "https://smxi.org/docs/inxi.htm";
changelog = "https://github.com/smxi/inxi/blob/${version}/inxi.changelog";
2019-01-13 18:37:32 +00:00
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
};
}