Merge pull request #266668 from reckenrode/webmacs-fix
webmacs: use GCC instead of clang
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, mkDerivationWith
|
||||
, fetchFromGitHub
|
||||
, python3Packages
|
||||
@@ -6,6 +7,8 @@
|
||||
}:
|
||||
|
||||
mkDerivationWith python3Packages.buildPythonApplication rec {
|
||||
inherit stdenv;
|
||||
|
||||
pname = "webmacs";
|
||||
version = "0.8";
|
||||
|
||||
|
||||
@@ -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 { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user