Nix: use gcc13Stdenv

This commit is contained in:
Mihai Fufezan 2023-09-07 11:20:08 +03:00
parent cc5852faa2
commit 0be6b03ee9
No known key found for this signature in database
3 changed files with 5 additions and 3 deletions

View file

@ -1,7 +1,6 @@
{
lib,
stdenv,
gcc13Stdenv,
pkg-config,
makeWrapper,
meson,
@ -40,7 +39,7 @@
}:
assert lib.assertMsg (!nvidiaPatches) "The option `nvidiaPatches` has been renamed `enableNvidiaPatches`";
assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been removed. Please refer https://wiki.hyprland.org/Configuring/XWayland";
gcc13Stdenv.mkDerivation {
stdenv.mkDerivation {
pname = "hyprland${lib.optionalString enableNvidiaPatches "-nvidia"}${lib.optionalString debug "-debug"}";
inherit version;