systemd: add withPCRE2 option
This commit is contained in:
parent
93dcbbf69d
commit
959cea2e80
@ -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
|
||||
;
|
||||
|
@ -18677,6 +18677,7 @@ in
|
||||
withMachined = false;
|
||||
withNetworkd = false;
|
||||
withNss = false;
|
||||
withPCRE2 = false;
|
||||
withPolkit = false;
|
||||
withResolved = false;
|
||||
withShellCompletions = false;
|
||||
|
Loading…
Reference in New Issue
Block a user