nixpkgs/pkgs/tools/system/inxi/default.nix
David Guibert 18b5ca29f5 inxi: enable json output
Before this patch:
$ inxi --output json --output-file output.json $additional_args
Error 80: The required json Perl module is not installed:
Cpanel::JSON::XS OR JSON::XS
See --recommends for more information.

With this patch, it works as expected:
$ inxi --output json --output-file output.json $additional_args
Writing JSON data to: output.json
Data written successfully.
2019-10-09 08:30:56 -07:00

33 lines
852 B
Nix

{ stdenv, fetchFromGitHub, perl, perlPackages, makeWrapper }:
stdenv.mkDerivation rec {
pname = "inxi";
version = "3.0.36-1";
src = fetchFromGitHub {
owner = "smxi";
repo = "inxi";
rev = version;
sha256 = "04134l323vwd0g2bffj11rnpw2jgs9la6aqrmv8vh7w9mq5nd57y";
};
buildInputs = [ perl makeWrapper ];
installPhase = ''
mkdir -p $out/bin
cp inxi $out/bin/
wrapProgram $out/bin/inxi \
--set PERL5LIB "${perlPackages.makePerlPath (with perlPackages; [ CpanelJSONXS ])}"
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";
homepage = https://smxi.org/docs/inxi.htm;
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
};
}