Skip to content

Commit e19ec91

Browse files
committed
beam_minimal: disable systemdSupport
This is an unnecessary expansion of the closure for a package that is used in non-systemd environments. systemd support is only necessary for epmd when used with systemd sockets. We already default `services.epmd.package` to `pkgs.erlang` which uses the full `beam` erlang.
1 parent 28e664f commit e19ec91

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

pkgs/development/interpreters/erlang/generic-builder.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
odbcSupport ? false,
5252
odbcPackages ? [ unixODBC ],
5353
opensslPackage ? openssl,
54-
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
5554
wxPackages ? [
5655
libGL
5756
libGLU

pkgs/top-level/all-packages.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7381,6 +7381,7 @@ with pkgs;
73817381
beam = callPackage ./beam-packages.nix { };
73827382
beam_minimal = callPackage ./beam-packages.nix {
73837383
beam = beam_minimal;
7384+
systemdSupport = false;
73847385
wxSupport = false;
73857386
};
73867387

0 commit comments

Comments
 (0)