diff options
author | Vaxry <[email protected]> | 2023-09-06 12:51:36 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-09-06 12:51:36 +0200 |
commit | 61a71c65ace5124cb26a074715280537e6e34d00 (patch) | |
tree | b54cf4d7a0f8477b2958619384982d31663f128f /nix | |
parent | c3a83daa1e61285a418c39a1d9f29427c2c9a2c3 (diff) | |
download | Hyprland-61a71c65ace5124cb26a074715280537e6e34d00.tar.gz Hyprland-61a71c65ace5124cb26a074715280537e6e34d00.zip |
internal: Formatter rework (#3186)
Diffstat (limited to 'nix')
-rw-r--r-- | nix/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/default.nix b/nix/default.nix index 96fa12d7..46302e41 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -1,6 +1,7 @@ { lib, stdenv, + gcc13Stdenv, pkg-config, makeWrapper, meson, @@ -39,7 +40,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"; - stdenv.mkDerivation { + gcc13Stdenv.mkDerivation { pname = "hyprland${lib.optionalString enableNvidiaPatches "-nvidia"}${lib.optionalString debug "-debug"}"; inherit version; |