From 111669a699f998b5eb5a0d5610b5fcb748aab038 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Thu, 19 Dec 2024 01:12:00 +0000 Subject: [PATCH] fix: update flake to gcc14 in flake (#47) update to gcc14 to match hyprlang's version --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index fd2d539..1fd6e6a 100644 --- a/flake.nix +++ b/flake.nix @@ -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;