tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nominatim-ui: add nixos test
Ivan Mincik
7 months ago
96943417
0c97d620
+6
-1
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
no
nominatim-ui
package.nix
+6
-1
pkgs/by-name/no/nominatim-ui/package.nix
···
3
stdenv,
4
fetchFromGitHub,
5
fetchYarnDeps,
0
6
writableTmpDirAsHomeHook,
7
writeText,
8
···
10
nodejs,
11
yarn,
12
13
-
# Custom application configuration placed to theme/config.theme.js file
14
# For the list of available configuration options see
15
# https://github.com/osm-search/nominatim-ui/blob/master/dist/config.defaults.js
16
customConfig ? null,
···
82
83
runHook postInstall
84
'';
0
0
0
0
85
86
meta = {
87
description = "Debugging user interface for Nominatim geocoder";
···
3
stdenv,
4
fetchFromGitHub,
5
fetchYarnDeps,
6
+
nixosTests,
7
writableTmpDirAsHomeHook,
8
writeText,
9
···
11
nodejs,
12
yarn,
13
14
+
# Custom application configuration placed to theme/config.theme.js file.
15
# For the list of available configuration options see
16
# https://github.com/osm-search/nominatim-ui/blob/master/dist/config.defaults.js
17
customConfig ? null,
···
83
84
runHook postInstall
85
'';
86
+
87
+
passthru.tests = {
88
+
inherit (nixosTests) nominatim;
89
+
};
90
91
meta = {
92
description = "Debugging user interface for Nominatim geocoder";