beam-packages: remove wxSupport from bootstrap arguments

Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
wip/yesman
Yorick 3 years ago committed by Yorick van Pelt
parent 11e4040457
commit 8622e4965b
No known key found for this signature in database
GPG Key ID: D8D3CC6D951384DE
  1. 7
      pkgs/development/interpreters/erlang/generic-builder.nix

@ -3,11 +3,10 @@
# TODO: use jdk https://github.com/NixOS/nixpkgs/pull/89731
, openjdk8 ? null # javacSupport
, unixODBC ? null # odbcSupport
, libGL ? null, libGLU ? null, wxGTK ? null, wxmac ? null, xorg ? null, wxSupport ? true
, libGL ? null, libGLU ? null, wxGTK ? null, wxmac ? null, xorg ? null
, parallelBuild ? false
, systemd
, systemd, wxSupport ? true
}:
let defaultWxSupport = wxSupport; in
{ baseName ? "erlang"
, version
, sha256 ? null
@ -21,7 +20,7 @@ let defaultWxSupport = wxSupport; in
, javacSupport ? false, javacPackages ? [ openjdk8 ]
, odbcSupport ? false, odbcPackages ? [ unixODBC ]
, withSystemd ? stdenv.isLinux # systemd support in epmd
, wxSupport ? defaultWxSupport, wxPackages ? [ libGL libGLU wxGTK xorg.libX11 ]
, wxPackages ? [ libGL libGLU wxGTK xorg.libX11 ]
, preUnpack ? "", postUnpack ? ""
, patches ? [], patchPhase ? "", prePatch ? "", postPatch ? ""
, configureFlags ? [], configurePhase ? "", preConfigure ? "", postConfigure ? ""

Loading…
Cancel
Save