···67## Writing packages providing pkg-config modules
89-Packages should set `meta.pkgConfigProvides` with the list of package config modules they provide.
10They should also use `testers.testMetaPkgConfig` to check that the final built package matches that list.
11Additionally, the [`validatePkgConfig` setup hook](https://nixos.org/manual/nixpkgs/stable/#validatepkgconfig), will do extra checks on to-be-installed pkg-config modules.
12
···67## Writing packages providing pkg-config modules
89+Packages should set `meta.pkgConfigModules` with the list of package config modules they provide.
10They should also use `testers.testMetaPkgConfig` to check that the final built package matches that list.
11Additionally, the [`validatePkgConfig` setup hook](https://nixos.org/manual/nixpkgs/stable/#validatepkgconfig), will do extra checks on to-be-installed pkg-config modules.
12
+3
pkgs/tools/networking/curl/default.nix
···33, phpExtensions
34, python3
35, tests
036, fetchpatch
37}:
38···178 # Additional checking with support http3 protocol.
179 # nginx-http3 = useThisCurl nixosTests.nginx-http3;
180 nginx-http3 = nixosTests.nginx-http3;
0181 };
182 };
183···189 platforms = platforms.all;
190 # Fails to link against static brotli or gss
191 broken = stdenv.hostPlatform.isStatic && (brotliSupport || gssSupport);
0192 };
193})