fix: update flake to gcc14 in flake (#47)

update to gcc14 to match hyprlang's version
This commit is contained in:
Charlie Root 2024-12-19 01:12:00 +00:00 committed by GitHub
commit 111669a699
Failed to generate hash of commit

View file

@ -19,7 +19,7 @@
default = self.packages.${system}.hypr-dynamic-cursors;
hypr-dynamic-cursors = let
inherit (inputs.hyprland.packages.${system}) hyprland;
inherit (pkgsFor.${system}) stdenvNoCC gcc13;
inherit (pkgsFor.${system}) stdenvNoCC gcc14;
name = "hypr-dynamic-cursors";
in
@ -29,7 +29,7 @@
src = ./.;
inherit (hyprland) buildInputs;
nativeBuildInputs = hyprland.nativeBuildInputs ++ [hyprland gcc13];
nativeBuildInputs = hyprland.nativeBuildInputs ++ [hyprland gcc14];
dontUseCmakeConfigure = true;
dontUseMesonConfigure = true;