nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

commit 51bb71655c165a5c939dd345cb2c8f8f9257d3b8
parent 35d7c4aab6b866ef670c29c82d57078275f5b103
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date:   Sat, 28 Feb 2026 16:04:05 +0400

Drop hittekaart

Diffstat:
Dpkgs/by-name/hi/hittekaart/package.nix | 34----------------------------------
1 file changed, 0 insertions(+), 34 deletions(-)

diff --git a/pkgs/by-name/hi/hittekaart/package.nix b/pkgs/by-name/hi/hittekaart/package.nix @@ -1,34 +0,0 @@ -{ - 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"; - }; -})