nixpkgs/nixos/tests/installed-tests/geocode-glib.nix
2022-07-02 20:14:11 +02:00

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;
}