txm: init at 0.1.4

Assisted-by: pi-coding-agent/opencode-zen-big-pickle-2026-07-12
This commit is contained in:
DuskyElf
2026-07-13 09:09:33 +05:30
parent 22d9ea8bf8
commit 66cafe6c0f
+36
View File
@@ -0,0 +1,36 @@
{
lib,
rustPlatform,
fetchFromGitHub,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "txm";
version = "0.1.4";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "thatmagicalcat";
repo = "txm";
tag = "v${finalAttrs.version}";
hash = "sha256-TV2vDQRH4KV+id7pPtG3Wjbfz/V60RS3wfIvKTP90iE=";
};
cargoHash = "sha256-ZGoIIPuDZUata7YmKOMCYcwc8Dlxo0s8W6eogK8qWsE=";
passthru.updateScript = nix-update-script { };
meta = {
description = "Terminal math rendering engine with LaTeX support";
homepage = "https://github.com/thatmagicalcat/txm";
changelog = "https://github.com/thatmagicalcat/txm/releases/tag/v${finalAttrs.src.tag}";
license = with lib.licenses; [
mit
asl20
];
maintainers = with lib.maintainers; [ DuskyElf ];
mainProgram = "txm";
platforms = lib.platforms.all;
};
})