meowpdf: init at 1.0.0 (#404117)

This commit is contained in:
Aleksana 2025-05-05 10:44:44 +08:00 committed by GitHub
commit f6a4b41d03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,34 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "meowpdf";
version = "1.0.0";
src = fetchFromGitHub {
owner = "monoamine11231";
repo = "meowpdf";
tag = "v${finalAttrs.version}";
hash = "sha256-C5GqyZW0pDmBuaKM890hx2JZtkZqZx+x/RZFCPhpjho=";
};
cargoHash = "sha256-hCGMm0ORKuyyWU5D9k+nthSwmq8ALz0qASLDaMiW30U=";
nativeBuildInputs = [
pkg-config
rustPlatform.bindgenHook
];
meta = {
description = "PDF viewer for the Kitty terminal with GUI-like usage and Vim-like keybindings written in Rust";
homepage = "https://github.com/monoamine11231/meowpdf";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ arthsmn ];
mainProgram = "meowpdf";
platforms = lib.platforms.linux;
};
})