From b24e38eba5c7df2a5cad3762a0bda7bcaee7f9ef Mon Sep 17 00:00:00 2001 From: Emily Date: Sun, 28 Jul 2024 22:51:58 +0100 Subject: [PATCH] =?UTF-8?q?gixy:=20pass=E2=80=90through=20nginx=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These exercise Gixy through the NixOS nginx module. --- pkgs/tools/admin/gixy/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/admin/gixy/default.nix b/pkgs/tools/admin/gixy/default.nix index 8d0fe24098f8..157430dcecda 100644 --- a/pkgs/tools/admin/gixy/default.nix +++ b/pkgs/tools/admin/gixy/default.nix @@ -3,6 +3,7 @@ fetchFromGitHub, fetchpatch2, python3, + nginx, }: let @@ -57,6 +58,10 @@ python.pkgs.buildPythonApplication rec { pythonRemoveDeps = [ "argparse" ]; + passthru = { + inherit (nginx.passthru) tests; + }; + meta = { description = "Nginx configuration static analyzer"; mainProgram = "gixy";