1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00
nixpkgs/pkgs/tools/system/inxi/default.nix

31 lines
701 B
Nix
Raw Normal View History

2019-01-13 18:37:32 +00:00
{ stdenv, fetchFromGitHub, perl }:
stdenv.mkDerivation rec {
name = "inxi-${version}";
2019-07-17 17:23:55 +01:00
version = "3.0.35-1";
2019-01-13 18:37:32 +00:00
src = fetchFromGitHub {
owner = "smxi";
repo = "inxi";
rev = version;
2019-07-17 17:23:55 +01:00
sha256 = "1rvidz2b9zp3ikkcjf8zr5r8r9mxnw3zgly2pvlim11kkp76zdl9";
2019-01-13 18:37:32 +00:00
};
buildInputs = [ perl ];
installPhase = ''
mkdir -p $out/bin
cp inxi $out/bin/
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 ];
};
}