cliflux: init at 1.8.0

This commit is contained in:
arthsmn 2025-03-20 20:47:17 -03:00
parent 527fcd5419
commit b4eaaeeef8
No known key found for this signature in database

View file

@ -0,0 +1,43 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "cliflux";
version = "1.8.0";
src = fetchFromGitHub {
owner = "spencerwi";
repo = "cliflux";
tag = "v${finalAttrs.version}";
hash = "sha256-AGkinlN5Ng0LXau6U9Ft+yMIFMpbrbup3R3c3UlglEM=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-3nNvPQMnYRZlhUab0MSf39vMNidpMLJh56JSjlsrYAg=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Terminal client for Miniflux RSS reader";
homepage = "https://github.com/spencerwi/cliflux";
changelog = "https://github.com/spencerwi/cliflux/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ arthsmn ];
mainProgram = "cliflux";
};
})