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

33 lines
852 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, perl, perlPackages, makeWrapper }:
2019-01-13 18:37:32 +00:00
stdenv.mkDerivation rec {
pname = "inxi";
2019-11-29 12:11:29 +00:00
version = "3.0.37-1";
2019-01-13 18:37:32 +00:00
src = fetchFromGitHub {
owner = "smxi";
repo = "inxi";
rev = version;
2019-11-29 12:11:29 +00:00
sha256 = "15wvj9w601ci3bavd1hk5qlm8dfm7a7cjglczk29yir5yw2jww3f";
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";
homepage = https://smxi.org/docs/inxi.htm;
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
};
}