Skip to content

Commit

Permalink
Merge pull request #266668 from reckenrode/webmacs-fix
Browse files Browse the repository at this point in the history
webmacs: use GCC instead of clang
  • Loading branch information
wegank authored Nov 10, 2023
2 parents 34d322a + f29fed8 commit 5156f69
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions pkgs/applications/networking/browsers/webmacs/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
{ lib
, stdenv
, mkDerivationWith
, fetchFromGitHub
, python3Packages
, herbstluftwm
}:

mkDerivationWith python3Packages.buildPythonApplication rec {
inherit stdenv;

pname = "webmacs";
version = "0.8";

Expand Down
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };

Expand Down

0 comments on commit 5156f69

Please sign in to comment.