Skip to content

Commit

Permalink
nginx(Stable|Mainline|Quic): use pcre2
Browse files Browse the repository at this point in the history
  • Loading branch information
ajs124 authored and jsoo1 committed Oct 20, 2023
1 parent 5218141 commit 130fa65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/servers/http/nginx/generic.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
outer@{ lib, stdenv, fetchurl, fetchpatch, openssl, zlib, pcre2, libxml2, libxslt
outer@{ lib, stdenv, fetchurl, fetchpatch, openssl, zlib, pcre, libxml2, libxslt
, nginx-doc

, nixosTests
Expand Down Expand Up @@ -53,7 +53,7 @@ stdenv.mkDerivation {
inherit sha256;
};

buildInputs = [ openssl zlib pcre2 libxml2 libxslt gd geoip perl ]
buildInputs = [ openssl zlib pcre libxml2 libxslt gd geoip perl ]
++ buildInputs
++ mapModules "inputs";

Expand Down
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22063,6 +22063,7 @@ with pkgs;

nginxQuic = callPackage ../servers/http/nginx/quic.nix {
zlib = zlib-ng.override { withZlibCompat = true; };
pcre = pcre2;
withPerl = false;
# We don't use `with` statement here on purpose!
# See https://github.com/NixOS/nixpkgs/pull/10474#discussion_r42369334
Expand Down

0 comments on commit 130fa65

Please sign in to comment.