terminalmap: init at 0.1.0

Tool to render real world maps in your terminal

https://github.com/psmux/TerminalMap
This commit is contained in:
Fabian Affolter
2026-04-22 00:22:53 +02:00
parent 9fb93e1397
commit 7b210c5c8c
+36
View File
@@ -0,0 +1,36 @@
{
lib,
fetchFromGitHub,
openssl,
pkg-config,
rustPlatform,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "terminalmap";
version = "0.1.0";
src = fetchFromGitHub {
owner = "psmux";
repo = "TerminalMap";
tag = "v${finalAttrs.version}";
hash = "sha256-6L3K5meR5pR8/U7QbW+qMaO2m+GNVB5Gny5gFCGE+hE=";
};
cargoHash = "sha256-VNvSjxCRO93beSY5DD1Vi/Wz87uYlkyyNeYVf8q860U=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
__structuredAttrs = true;
meta = {
description = "Tool to render real world maps in your terminal";
homepage = "https://github.com/psmux/TerminalMap";
changelog = "https://github.com/psmux/TerminalMap/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "terminalmap";
};
})