diff --git a/nix/default.nix b/nix/default.nix index 6062a215..66ea53a6 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -93,6 +93,13 @@ assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been remov ++ lib.optionals enableXWayland [libxcb xcbutilwm xwayland] ++ lib.optionals withSystemd [systemd]; + # avoid wrapping + propagatedBuildInputs = [ + stdenv.cc + binutils + pciutils + ]; + mesonBuildType = if debug then "debug" @@ -132,14 +139,6 @@ assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been remov postInstall = '' ln -s ${wlroots}/include/wlr $dev/include/hyprland/wlroots - ${lib.optionalString wrapRuntimeDeps '' - wrapProgram $out/bin/Hyprland \ - --suffix PATH : ${lib.makeBinPath [ - stdenv.cc - binutils - pciutils - ]} - ''} ''; passthru.providedSessions = ["hyprland"];