systemd: add withUserDb flag
This commit is contained in:
parent
e77326208e
commit
a079a6f026
|
@ -73,6 +73,7 @@
|
||||||
, withShellCompletions ? true
|
, withShellCompletions ? true
|
||||||
, withTimedated ? true
|
, withTimedated ? true
|
||||||
, withTimesyncd ? true
|
, withTimesyncd ? true
|
||||||
|
, withUserDb ? true
|
||||||
|
|
||||||
# name argument
|
# name argument
|
||||||
, pname ? "systemd"
|
, pname ? "systemd"
|
||||||
|
@ -233,6 +234,7 @@ stdenv.mkDerivation {
|
||||||
"-Dsysusers=false"
|
"-Dsysusers=false"
|
||||||
"-Dtimedated=${lib.boolToString withTimedated}"
|
"-Dtimedated=${lib.boolToString withTimedated}"
|
||||||
"-Dtimesyncd=${lib.boolToString withTimesyncd}"
|
"-Dtimesyncd=${lib.boolToString withTimesyncd}"
|
||||||
|
"-Duserdb=${lib.boolToString withUserDb}"
|
||||||
"-Dcoredump=${lib.boolToString withCoredump}"
|
"-Dcoredump=${lib.boolToString withCoredump}"
|
||||||
"-Dfirstboot=false"
|
"-Dfirstboot=false"
|
||||||
"-Dresolve=${lib.boolToString withResolved}"
|
"-Dresolve=${lib.boolToString withResolved}"
|
||||||
|
|
|
@ -18678,6 +18678,7 @@ in
|
||||||
withResolved = false;
|
withResolved = false;
|
||||||
withShellCompletions = false;
|
withShellCompletions = false;
|
||||||
withTimedated = false;
|
withTimedated = false;
|
||||||
|
withUserDb = false;
|
||||||
glib = null;
|
glib = null;
|
||||||
libgcrypt = null;
|
libgcrypt = null;
|
||||||
lvm2 = null;
|
lvm2 = null;
|
||||||
|
|
Loading…
Reference in New Issue