hyfetch: 1.99.0 -> 2.0.1, add versionCheckHook, add updateScript, adopt (#435632)

This commit is contained in:
Weijia Wang
2025-08-21 22:33:10 +02:00
committed by GitHub
+38 -29
View File
@@ -1,44 +1,31 @@
{
lib,
rustPlatform,
fetchFromGitHub,
python3Packages,
pciutils,
installShellFiles,
stdenv,
makeBinaryWrapper,
pciutils,
versionCheckHook,
nix-update-script,
}:
python3Packages.buildPythonApplication rec {
pname = "hyfetch";
version = "1.99.0";
pyproject = true;
outputs = [
"out"
"man"
];
rustPlatform.buildRustPackage (finalAttrs: {
pname = "hyfetch";
version = "2.0.1";
src = fetchFromGitHub {
owner = "hykilpikonna";
repo = "hyfetch";
tag = version;
hash = "sha256-GL1/V+LgSXJ4b28PfinScDrJhU9VDa4pVi24zWEzbAk=";
tag = finalAttrs.version;
hash = "sha256-OaMwUTBBpFrco2Wcodb7+3ywdD5bXDebBFEoJYsgAbE=";
};
build-system = [
python3Packages.setuptools
];
dependencies = [
python3Packages.typing-extensions
];
cargoHash = "sha256-xm8q4EG7qfaz/Ru/FVRiWIQW2Tjh9Ar0MquVQVLDSRA=";
nativeBuildInputs = [
installShellFiles
];
# No test available
doCheck = false;
pythonImportsCheck = [
"hyfetch"
makeBinaryWrapper
];
# NOTE: The HyFetch project maintains an updated version of neofetch renamed
@@ -48,6 +35,14 @@ python3Packages.buildPythonApplication rec {
postInstall = ''
mv ./docs/neofetch.1 ./docs/neowofetch.1
installManPage ./docs/hyfetch.1 ./docs/neowofetch.1
install -m 755 neofetch $out/bin/neowofetch
''
+ lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd hyfetch \
--bash <($out/bin/hyfetch --bpaf-complete-style-bash) \
--fish <($out/bin/hyfetch --bpaf-complete-style-fish) \
--zsh <($out/bin/hyfetch --bpaf-complete-style-zsh)
'';
postFixup = ''
@@ -55,8 +50,20 @@ python3Packages.buildPythonApplication rec {
--prefix PATH : ${lib.makeBinPath [ pciutils ]}
'';
outputs = [
"out"
"man"
];
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = "--version";
versionCheckKeepEnvironment = [ "PATH" ];
doInstallCheck = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "Neofetch with pride flags <3";
description = "Neofetch with LGBTQ+ pride flags";
longDescription = ''
HyFetch is a command-line system information tool fork of neofetch.
HyFetch displays information about your system next to your OS logo
@@ -66,13 +73,15 @@ python3Packages.buildPythonApplication rec {
operating system or distribution you are running, what theme or
icon set you are using, etc.
'';
homepage = "https://github.com/hykilpikonna/HyFetch";
homepage = "https://github.com/hykilpikonna/hyfetch";
changelog = "https://github.com/hykilpikonna/hyfetch/releases/tag/${finalAttrs.version}";
license = lib.licenses.mit;
mainProgram = "hyfetch";
maintainers = with lib.maintainers; [
yisuidenghua
isabelroses
nullcube
defelo
];
};
}
})