commit c0fe6d1dd5f7f7614a2b69fb55ea55385b47d187
parent 73b925cc7a611f5f5db376594ca524ea5e4ce89b
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date: Sun, 8 Feb 2026 19:49:13 +0400
Add hittekaart
Diffstat:
1 file changed, 34 insertions(+), 0 deletions(-)
diff --git a/pkgs/by-name/hi/hittekaart/package.nix b/pkgs/by-name/hi/hittekaart/package.nix
@@ -0,0 +1,34 @@
+{
+ lib,
+ rustPlatform,
+ fetchFromGitea,
+ python3,
+ sqlite,
+}:
+
+rustPlatform.buildRustPackage (finalAttrs: {
+ pname = "hittekaart";
+ version = "0.1.0";
+
+ src = fetchFromGitea {
+ domain = "codeberg.org";
+ owner = "dunj3";
+ repo = "hittekaart";
+ tag = "v${finalAttrs.version}";
+ hash = "sha256-bog00/pkpTaUtLDfuR9d8yEhDt9mn9YDyF17ojZMM38=";
+ };
+
+ cargoHash = "sha256-Izcgxkl7QdNWYRrz9+nKMlCkEDtqiZTIAnJO/b7ZJKs=";
+
+ nativeBuildInputs = [ python3 ];
+
+ buildInputs = [ sqlite ];
+
+ meta = {
+ description = "Renders heatmaps by reading GPX files and generating OSM overlay tiles";
+ homepage = "https://codeberg.org/dunj3/hittekaart";
+ license = lib.licenses.gpl3;
+ maintainers = [ lib.maintainers.sikmir ];
+ mainProgram = "hittekaart";
+ };
+})