fblog: 4.16.0 -> 4.17.0 (#467889)

This commit is contained in:
Johannes Kirschbauer
2025-12-09 16:32:57 +00:00
committed by GitHub
+18 -9
View File
@@ -2,26 +2,35 @@
lib,
rustPlatform,
fetchFromGitHub,
versionCheckHook,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "fblog";
version = "4.16.0";
version = "4.17.0";
src = fetchFromGitHub {
owner = "brocode";
repo = "fblog";
rev = "v${version}";
hash = "sha256-SWwk7qNe2R1aBYGBFqltUZjeOvr4jG1P7/CPIAfHCc8=";
rev = "v${finalAttrs.version}";
hash = "sha256-SDOYW9CpC7E62nVnZL04Kx9ckVEZyvcMolJCfKDqdMk=";
};
cargoHash = "sha256-du9FXuUNqQm1AMqcCFqeso5OPrPCxzTVl5e7kR0rpwc=";
cargoHash = "sha256-Pn8HsBz+5OHz4jF6xmORLQSLYClTHpaJXWiS5sPyV2w=";
meta = with lib; {
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = "--version";
passthru.updateScript = nix-update-script { };
meta = {
description = "Small command-line JSON log viewer";
mainProgram = "fblog";
homepage = "https://github.com/brocode/fblog";
license = licenses.wtfpl;
maintainers = [ ];
changelog = "https://github.com/brocode/fblog/releases/tag/v${finalAttrs.version}";
license = lib.licenses.wtfpl;
maintainers = [ lib.maintainers.progrm_jarvis ];
};
}
})