From 4ff48ea01cc277de07168caf625fd4a03b5dc710 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Mon, 25 Jan 2021 12:11:59 +0100 Subject: [PATCH] nixos/tests/searx: fix build yq-go has been updated with breaking changes to the syntax. --- nixos/tests/searx.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/tests/searx.nix b/nixos/tests/searx.nix index 22c1967b8160..7c28eea30d20 100644 --- a/nixos/tests/searx.nix +++ b/nixos/tests/searx.nix @@ -81,8 +81,9 @@ import ./make-test-python.nix ({ pkgs, ...} : base.wait_for_unit("searx-init") base.wait_for_file("/run/searx/settings.yml") output = base.succeed( - "${pkgs.yq-go}/bin/yq r /run/searx/settings.yml" - " 'engines.(name==startpage).shortcut'" + "${pkgs.yq-go}/bin/yq eval" + " '.engines[] | select(.name==\"startpage\") | .shortcut'" + " /run/searx/settings.yml" ).strip() assert output == "start", "Settings not merged"