Merge pull request #266668 from reckenrode/webmacs-fix

webmacs: use GCC instead of clang
This commit is contained in:
Weijia Wang
2023-11-10 22:41:10 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
@@ -1,4 +1,5 @@
{ lib
, stdenv
, mkDerivationWith
, fetchFromGitHub
, python3Packages
@@ -6,6 +7,8 @@
}:
mkDerivationWith python3Packages.buildPythonApplication rec {
inherit stdenv;
pname = "webmacs";
version = "0.8";
+3 -1
View File
@@ -36455,7 +36455,9 @@ with pkgs;
webex = callPackage ../applications/networking/instant-messengers/webex { };
webmacs = libsForQt5.callPackage ../applications/networking/browsers/webmacs { };
webmacs = libsForQt5.callPackage ../applications/networking/browsers/webmacs {
stdenv = if stdenv.cc.isClang then gccStdenv else stdenv;
};
websploit = python3Packages.callPackage ../tools/security/websploit { };