mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 09:45:58 +01:00
Nix: wrap with gcc
This ensures the function hook can assemble.
This commit is contained in:
parent
e75dafd8b2
commit
e5eb11ad04
1 changed files with 5 additions and 1 deletions
|
@ -132,7 +132,11 @@ assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been remov
|
||||||
ln -s ${wlroots}/include/wlr $dev/include/hyprland/wlroots
|
ln -s ${wlroots}/include/wlr $dev/include/hyprland/wlroots
|
||||||
${lib.optionalString wrapRuntimeDeps ''
|
${lib.optionalString wrapRuntimeDeps ''
|
||||||
wrapProgram $out/bin/Hyprland \
|
wrapProgram $out/bin/Hyprland \
|
||||||
--suffix PATH : ${lib.makeBinPath [binutils pciutils]}
|
--suffix PATH : ${lib.makeBinPath [
|
||||||
|
stdenv.cc
|
||||||
|
binutils
|
||||||
|
pciutils
|
||||||
|
]}
|
||||||
''}
|
''}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue