nominatim-ui: init at 3.7.1

Co-authored-by: Valentin Gagarin <valentin@gagarin.work>
Co-authored-by: Nikolay Korotkiy <sikmir@disroot.org>
Co-authored-by: Acid Bong <acidbong@tilde.club>
This commit is contained in:
Ivan Mincik
2025-06-26 12:23:06 +02:00
co-authored by Valentin Gagarin Nikolay Korotkiy Acid Bong
parent 98378c52df
commit a4f9acfc07
+36
View File
@@ -0,0 +1,36 @@
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "nominatim-ui";
version = "3.7.1";
src = fetchFromGitHub {
owner = "osm-search";
repo = "nominatim-ui";
tag = "v${finalAttrs.version}";
hash = "sha256-TliTWDKdIp7Z0uYw5P65i06NQAUNwNymUsSYrihVZFE=";
};
installPhase = ''
runHook preInstall
cp --archive dist $out
runHook postInstall
'';
meta = {
description = "Debugging user interface for Nominatim geocoder";
homepage = "https://github.com/osm-search/nominatim-ui";
license = lib.licenses.gpl2;
teams = with lib.teams; [
geospatial
ngi
];
changelog = "https://github.com/osm-search/nominatim-ui/releases/tag/v${finalAttrs.version}";
};
})