Skip to content

Commit

Permalink
systemd: set withRemote true by default
Browse files Browse the repository at this point in the history
This also adds the libmicrohttpd as a `buildInput` when `withRemote`
is true.
  • Loading branch information
nlewo committed Nov 2, 2020
1 parent d64f4d0 commit 859a44e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/os-specific/linux/systemd/default.nix
Expand Up @@ -53,6 +53,7 @@
, withKexectools ? lib.any (lib.meta.platformMatch stdenv.hostPlatform) kexectools.meta.platforms
, kexectools
, bashInteractive
, libmicrohttpd

, withAnalyze ? true
, withApparmor ? true
Expand All @@ -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
Expand Down Expand Up @@ -201,6 +202,7 @@ stdenv.mkDerivation {
++ lib.optional withPCRE2 pcre2
++ lib.optional withResolved libgpgerror
++ lib.optional withSelinux libselinux
++ lib.optional withRemote libmicrohttpd
;

#dontAddPrefix = true;
Expand Down
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -18812,6 +18812,7 @@ in
withNss = false;
withPCRE2 = false;
withPolkit = false;
withRemote = false;
withResolved = false;
withShellCompletions = false;
withTimedated = false;
Expand Down

0 comments on commit 859a44e

Please sign in to comment.