diff --git a/pkgs/by-name/co/contact/package.nix b/pkgs/by-name/co/contact/package.nix new file mode 100644 index 000000000000..d890ea29b039 --- /dev/null +++ b/pkgs/by-name/co/contact/package.nix @@ -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; + }; +}