systemd: set withRemote true by default

This also adds the libmicrohttpd as a `buildInput` when `withRemote`
is true.
wip/yesman
Antoine Eiche 4 years ago
parent d64f4d03d5
commit 859a44ebc0
  1. 4
      pkgs/os-specific/linux/systemd/default.nix
  2. 1
      pkgs/top-level/all-packages.nix

@ -53,6 +53,7 @@
, withKexectools ? lib.any (lib.meta.platformMatch stdenv.hostPlatform) kexectools.meta.platforms
, kexectools
, bashInteractive
, libmicrohttpd
, withAnalyze ? true
, withApparmor ? true
@ -71,7 +72,7 @@
, withNss ? true
, withPCRE2 ? true
, withPolkit ? true
, withRemote ? false # has always been disabled on NixOS, upstream version appears broken anyway
, withRemote ? true
, withResolved ? true
, withShellCompletions ? true
, withTimedated ? true
@ -201,6 +202,7 @@ stdenv.mkDerivation {
++ lib.optional withPCRE2 pcre2
++ lib.optional withResolved libgpgerror
++ lib.optional withSelinux libselinux
++ lib.optional withRemote libmicrohttpd
;
#dontAddPrefix = true;

@ -18812,6 +18812,7 @@ in
withNss = false;
withPCRE2 = false;
withPolkit = false;
withRemote = false;
withResolved = false;
withShellCompletions = false;
withTimedated = false;

Loading…
Cancel
Save