diff options
author | Mihai Fufezan <[email protected]> | 2023-12-27 20:27:54 +0200 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2023-12-27 20:27:55 +0200 |
commit | e5eb11ad0423bfdfd4056964ef868e26b2d3c846 (patch) | |
tree | aae223aea8320a5c58fd194e40cbf08d4f749f42 /nix | |
parent | e75dafd8b2ab270b2b4b80eb3b79a8f5a4b2943f (diff) | |
download | Hyprland-e5eb11ad0423bfdfd4056964ef868e26b2d3c846.tar.gz Hyprland-e5eb11ad0423bfdfd4056964ef868e26b2d3c846.zip |
Nix: wrap with gcc
This ensures the function hook can assemble.
Diffstat (limited to 'nix')
-rw-r--r-- | nix/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nix/default.nix b/nix/default.nix index 4b1be0e2..751457ca 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -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 + ]} ''} ''; |