systemd: add withPCRE2 option

This commit is contained in:
Florian Klink 2020-10-28 01:36:02 +01:00
parent 93dcbbf69d
commit 959cea2e80
2 changed files with 4 additions and 1 deletions

View file

@ -69,6 +69,7 @@
, withMachined ? true
, withNetworkd ? true
, withNss ? true
, withPCRE2 ? true
, withPolkit ? true
, withRemote ? false # has always been disabled on NixOS, upstream version appears broken anyway
, withResolved ? true
@ -187,8 +188,8 @@ stdenv.mkDerivation {
libuuid
linuxHeaders
pam
pcre2
]
++ lib.optional withApparmor libapparmor
++ lib.optional wantCurl (lib.getDev curl)
++ lib.optionals withCompression [ bzip2 lz4 xz ]
@ -197,6 +198,7 @@ stdenv.mkDerivation {
++ lib.optional withKexectools kexectools
++ lib.optional withLibseccomp libseccomp
++ lib.optional withNetworkd iptables
++ lib.optional withPCRE2 pcre2
++ lib.optional withResolved libgpgerror
++ lib.optional withSelinux libselinux
;

View file

@ -18677,6 +18677,7 @@ in
withMachined = false;
withNetworkd = false;
withNss = false;
withPCRE2 = false;
withPolkit = false;
withResolved = false;
withShellCompletions = false;