mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03: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;
|
|
}
|