mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
14 lines
248 B
Nix
14 lines
248 B
Nix
|
{ pkgs, makeInstalledTest, ... }:
|
||
|
|
||
|
makeInstalledTest {
|
||
|
testConfig = {
|
||
|
i18n.supportedLocales = [
|
||
|
"en_US.UTF-8/UTF-8"
|
||
|
# The tests require this locale available.
|
||
|
"en_GB.UTF-8/UTF-8"
|
||
|
];
|
||
|
};
|
||
|
|
||
|
tested = pkgs.geocode-glib;
|
||
|
}
|