mdfried: init at 0.12.1

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
Co-authored-by: Acid Bong <acidbong@tilde.club>
This commit is contained in:
Benjamin Große 2025-05-23 15:27:28 +01:00
parent 6c20afc263
commit e0d3828e91
No known key found for this signature in database

View file

@ -0,0 +1,30 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "mdfried";
version = "0.12.1";
src = fetchFromGitHub {
owner = "benjajaja";
repo = "mdfried";
tag = "v${finalAttrs.version}";
hash = "sha256-pSJexHOfGB8KGTpPrqw+dgymDXyux0uH6CDsZcnsHlE=";
};
cargoHash = "sha256-ZcWoYfvYmesi7JPOeSmIj0L9qlsoOYf6SMO0XQy6KwA=";
doCheck = true;
meta = {
description = "Markdown viewer TUI for the terminal, with big text and image rendering";
homepage = "https://github.com/benjajaja/mdfried";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ benjajaja ];
platforms = lib.platforms.unix;
mainProgram = "mdfried";
};
})