tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
erlang: migrate to wxGTK32
authored by
Weijia Wang
and committed by
Yt
3 years ago
9fd38e55
b3b7ba7d
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
top-level
beam-packages.nix
+6
-6
pkgs/top-level/beam-packages.nix
···
1
1
{ beam
2
2
, callPackage
3
3
, openssl_1_1
4
4
-
, wxGTK30
4
4
+
, wxGTK32
5
5
, buildPackages
6
6
, stdenv
7
7
, wxSupport ? true
···
31
31
32
32
# R25
33
33
erlangR25 = self.beamLib.callErlang ../development/interpreters/erlang/R25.nix {
34
34
-
wxGTK = wxGTK30;
34
34
+
wxGTK = wxGTK32;
35
35
parallelBuild = true;
36
36
autoconf = buildPackages.autoconf269;
37
37
inherit wxSupport systemdSupport;
···
45
45
46
46
# R24
47
47
erlangR24 = self.beamLib.callErlang ../development/interpreters/erlang/R24.nix {
48
48
-
wxGTK = wxGTK30;
48
48
+
wxGTK = wxGTK32;
49
49
# Can be enabled since the bug has been fixed in https://github.com/erlang/otp/pull/2508
50
50
parallelBuild = true;
51
51
autoconf = buildPackages.autoconf269;
···
61
61
# R23
62
62
erlangR23 = self.beamLib.callErlang ../development/interpreters/erlang/R23.nix {
63
63
openssl = openssl_1_1;
64
64
-
wxGTK = wxGTK30;
64
64
+
wxGTK = wxGTK32;
65
65
# Can be enabled since the bug has been fixed in https://github.com/erlang/otp/pull/2508
66
66
parallelBuild = true;
67
67
autoconf = buildPackages.autoconf269;
···
77
77
# R22
78
78
erlangR22 = self.beamLib.callErlang ../development/interpreters/erlang/R22.nix {
79
79
openssl = openssl_1_1;
80
80
-
wxGTK = wxGTK30;
80
80
+
wxGTK = wxGTK32;
81
81
# Can be enabled since the bug has been fixed in https://github.com/erlang/otp/pull/2508
82
82
parallelBuild = true;
83
83
autoconf = buildPackages.autoconf269;
···
93
93
# R21
94
94
erlangR21 = self.beamLib.callErlang ../development/interpreters/erlang/R21.nix {
95
95
openssl = openssl_1_1;
96
96
-
wxGTK = wxGTK30;
96
96
+
wxGTK = wxGTK32;
97
97
autoconf = buildPackages.autoconf269;
98
98
inherit wxSupport systemdSupport;
99
99
};