bulletty: init at 0.1.7

FKouhai a0ba392b 2a7c84e1

Changed files
+38
pkgs
by-name
bu
bulletty
+38
pkgs/by-name/bu/bulletty/package.nix
···
+
{
+
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 ];
+
};
+
})