From da19f27bd463b3e76a40f18a2076927a90840589 Mon Sep 17 00:00:00 2001 From: Artturin Date: Sun, 1 Sep 2024 22:57:01 +0300 Subject: [PATCH 1/2] geocode-glib.tests.installed-tests: Fix Were added in https://www.github.com/GNOME/geocode-glib/commit/c670fb9afe886f26448a8a4654a3b52a90386c1f https://hydra.nixos.org/build/270814594/log --- nixos/tests/installed-tests/geocode-glib.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/tests/installed-tests/geocode-glib.nix b/nixos/tests/installed-tests/geocode-glib.nix index fcb38c96ab0f6..76a32ee2849ab 100644 --- a/nixos/tests/installed-tests/geocode-glib.nix +++ b/nixos/tests/installed-tests/geocode-glib.nix @@ -4,8 +4,10 @@ makeInstalledTest { testConfig = { i18n.supportedLocales = [ "en_US.UTF-8/UTF-8" - # The tests require this locale available. + # The tests require these locales. "en_GB.UTF-8/UTF-8" + "cs_CZ.UTF-8/UTF-8" + "sv_SE.UTF-8/UTF-8" ]; }; From a93d6723672cd2ea229778ff5361fd656f6f9f57 Mon Sep 17 00:00:00 2001 From: Artturin Date: Sun, 1 Sep 2024 23:53:38 +0300 Subject: [PATCH 2/2] gjs.tests.installedTests: Fix `glib`'s typelib was split from `gobject-introspection`. `ImportError: Typelib file for namespace 'GObject', version '2.0' not found` --- pkgs/development/libraries/gjs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gjs/default.nix b/pkgs/development/libraries/gjs/default.nix index 604435cee5105..bf1e854e811c9 100644 --- a/pkgs/development/libraries/gjs/default.nix +++ b/pkgs/development/libraries/gjs/default.nix @@ -28,7 +28,7 @@ let testDeps = [ - gtk3 atk pango.out gdk-pixbuf harfbuzz + gtk3 atk pango.out gdk-pixbuf harfbuzz glib.out ]; in stdenv.mkDerivation (finalAttrs: { pname = "gjs";