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

View File

@ -62,16 +62,16 @@ let
++ recommendedSystemPrograms
++ recommendedDisplayInformationPrograms;
in
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "inxi";
version = "3.3.37-1";
version = "3.3.38-1";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "smxi";
repo = "inxi";
rev = version;
hash = "sha256-LyIKjXdfE2sK81zFpXPneaFyfKqa4tU4GfXtt89TZOg=";
tag = finalAttrs.version;
hash = "sha256-+2NPQUn2A8Xy5ByKYS3MOcad6xXvkqcusWEMr7mkEwA=";
};
nativeBuildInputs = [ makeWrapper ];
@ -87,7 +87,7 @@ stdenv.mkDerivation rec {
cp inxi.1 $out/share/man/man1/
'';
meta = with lib; {
meta = {
description = "Full featured CLI system information tool";
longDescription = ''
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.
'';
homepage = "https://smxi.org/docs/inxi.htm";
changelog = "https://github.com/smxi/inxi/blob/${version}/inxi.changelog";
license = licenses.gpl3Plus;
platforms = platforms.unix;
changelog = "https://codeberg.org/smxi/inxi/src/tag/${finalAttrs.version}/inxi.changelog";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.unix;
maintainers = [ ];
mainProgram = "inxi";
};
}
})