Skip to content

Commit

Permalink
Nix: wrap with gcc
Browse files Browse the repository at this point in the history
This ensures the function hook can assemble.
  • Loading branch information
fufexan committed Dec 27, 2023
1 parent e75dafd commit e5eb11a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,11 @@ assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been remov
ln -s ${wlroots}/include/wlr $dev/include/hyprland/wlroots
${lib.optionalString wrapRuntimeDeps ''
wrapProgram $out/bin/Hyprland \
--suffix PATH : ${lib.makeBinPath [binutils pciutils]}
--suffix PATH : ${lib.makeBinPath [
stdenv.cc
binutils
pciutils
]}
''}
'';

Expand Down

0 comments on commit e5eb11a

Please sign in to comment.