blob: 3fc5dc313a24ef18c5f9477a900e7459d885ecb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs, makeInstalledTest, ... }:
makeInstalledTest {
testConfig = {
i18n.supportedLocales = [
"en_US.UTF-8/UTF-8"
# The tests require these locales.
"en_GB.UTF-8/UTF-8"
"cs_CZ.UTF-8/UTF-8"
"sv_SE.UTF-8/UTF-8"
];
};
tested = pkgs.geocode-glib_2;
}
|