nominatim-ui: add nixos test

This commit is contained in:
Ivan Mincik 2025-07-08 11:00:30 +02:00
parent 0c97d620be
commit 96943417e7

View File

@ -3,6 +3,7 @@
stdenv,
fetchFromGitHub,
fetchYarnDeps,
nixosTests,
writableTmpDirAsHomeHook,
writeText,
@ -10,7 +11,7 @@
nodejs,
yarn,
# Custom application configuration placed to theme/config.theme.js file
# Custom application configuration placed to theme/config.theme.js file.
# For the list of available configuration options see
# https://github.com/osm-search/nominatim-ui/blob/master/dist/config.defaults.js
customConfig ? null,
@ -83,6 +84,10 @@ stdenv.mkDerivation (finalAttrs: {
runHook postInstall
'';
passthru.tests = {
inherit (nixosTests) nominatim;
};
meta = {
description = "Debugging user interface for Nominatim geocoder";
homepage = "https://github.com/osm-search/nominatim-ui";