Martin Joerg 2025-04-12 09:56:19 +00:00
parent 2dc853845b
commit 46c4fba4ca

View File

@ -62,16 +62,16 @@ let
++ recommendedSystemPrograms ++ recommendedSystemPrograms
++ recommendedDisplayInformationPrograms; ++ recommendedDisplayInformationPrograms;
in in
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "inxi"; pname = "inxi";
version = "3.3.37-1"; version = "3.3.38-1";
src = fetchFromGitea { src = fetchFromGitea {
domain = "codeberg.org"; domain = "codeberg.org";
owner = "smxi"; owner = "smxi";
repo = "inxi"; repo = "inxi";
rev = version; tag = finalAttrs.version;
hash = "sha256-LyIKjXdfE2sK81zFpXPneaFyfKqa4tU4GfXtt89TZOg="; hash = "sha256-+2NPQUn2A8Xy5ByKYS3MOcad6xXvkqcusWEMr7mkEwA=";
}; };
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];
@ -87,7 +87,7 @@ stdenv.mkDerivation rec {
cp inxi.1 $out/share/man/man1/ cp inxi.1 $out/share/man/man1/
''; '';
meta = with lib; { meta = {
description = "Full featured CLI system information tool"; description = "Full featured CLI system information tool";
longDescription = '' longDescription = ''
inxi is a command line system information script built for console and inxi is a command line system information script built for console and
@ -97,10 +97,10 @@ stdenv.mkDerivation rec {
Processes, RAM usage, and a wide variety of other useful information. Processes, RAM usage, and a wide variety of other useful information.
''; '';
homepage = "https://smxi.org/docs/inxi.htm"; homepage = "https://smxi.org/docs/inxi.htm";
changelog = "https://github.com/smxi/inxi/blob/${version}/inxi.changelog"; changelog = "https://codeberg.org/smxi/inxi/src/tag/${finalAttrs.version}/inxi.changelog";
license = licenses.gpl3Plus; license = lib.licenses.gpl3Plus;
platforms = platforms.unix; platforms = lib.platforms.unix;
maintainers = [ ]; maintainers = [ ];
mainProgram = "inxi"; mainProgram = "inxi";
}; };
} })