contact: init at 1.3.16 (#427048)

This commit is contained in:
Morgan Jones
2025-08-08 19:28:49 +00:00
committed by GitHub
+34
View File
@@ -0,0 +1,34 @@
{
lib,
fetchFromGitHub,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "contact";
version = "1.3.16";
pyproject = true;
src = fetchFromGitHub {
owner = "pdxlocations";
repo = "contact";
tag = version;
hash = "sha256-buT3c8mcDgzUF9FP/nkvSijaqnyQgD87vQGU73qn3K4=";
};
dependencies = [ python3Packages.meshtastic ];
build-system = [ python3Packages.poetry-core ];
meta = {
homepage = "https://github.com/pdxlocations/contact";
changelog = "https://github.com/pdxlocations/contact/releases/tag/${src.tag}";
description = "Console UI for Meshtastic";
mainProgram = "contact";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
sarcasticadmin
];
platforms = lib.platforms.unix;
};
}