about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/installed-tests/geocode-glib.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/tests/installed-tests/geocode-glib.nix')
-rw-r--r--nixpkgs/nixos/tests/installed-tests/geocode-glib.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/nixpkgs/nixos/tests/installed-tests/geocode-glib.nix b/nixpkgs/nixos/tests/installed-tests/geocode-glib.nix
new file mode 100644
index 000000000000..fcb38c96ab0f
--- /dev/null
+++ b/nixpkgs/nixos/tests/installed-tests/geocode-glib.nix
@@ -0,0 +1,13 @@
+{ 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;
+}