bulletty: init at 0.1.7 (#444117)

This commit is contained in:
isabel
2025-10-02 20:21:27 +00:00
committed by GitHub
+38
View File
@@ -0,0 +1,38 @@
{
lib,
pkgs,
fetchFromGitHub,
rustPlatform,
nix-update-script,
versionCheckHook,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "bulletty";
version = "0.1.7";
src = fetchFromGitHub {
owner = "CrociDB";
repo = "bulletty";
tag = "v${finalAttrs.version}";
hash = "sha256-ceXHrsxUSDx4orlHTOdynYKDID/uvp8NxVMei1EqDA8=";
};
cargoHash = "sha256-vhZaklpNIGSMRSjD+WINphMVsAcepUJfw9WBnaxoK4c=";
# perl is required for bulletty package build for openssl
nativeBuildInputs = with pkgs; [
perl
];
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
passthru.updateScript = nix-update-script { };
meta = {
description = "bulletty is a feed reader for the terminal";
homepage = "https://bulletty.croci.dev/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.FKouhai ];
};
})