From db6a1835d2d24cbfeb5026920c763ca7cf8dc3e2 Mon Sep 17 00:00:00 2001 From: Krutonium <3945538+Krutonium@users.noreply.github.com> Date: Sun, 17 May 2026 09:26:50 -0400 Subject: [PATCH] Flake: Update GitHub revision and hash for aurora-src (#1237) * Flake: Update GitHub revision and hash for aurora-src Fixes Build Error due to Aurora being out of date in the flake. * No Required Aurora Hash --- flake.nix | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/flake.nix b/flake.nix index edba703a3d..29c99b10a5 100644 --- a/flake.nix +++ b/flake.nix @@ -15,12 +15,6 @@ # Dependencies that are not packaged in nixpkgs (used by the Linux package build): buildSources = pkgs: { - aurora-src = pkgs.fetchFromGitHub { - owner = "encounter"; - repo = "aurora"; - rev = "63606a43265a3bc18dafd500ab4d7a2108f109e6"; - hash = "sha256-xBvnAwGwNzav67Ac6oUz7RqDUwqgL2bsME3OOMn8Tqw="; - }; dawn-src = pkgs.fetchzip { url = "https://github.com/encounter/dawn-build/releases/download/v20260423.175430/dawn-linux-x86_64.tar.gz"; hash = "sha256-HXfKTLHtMPwupnFnaflCARtXVPuS/0PoCePXidjE5xs="; @@ -59,9 +53,6 @@ name = "dusklight"; src = ./.; postUnpack = '' - mkdir -p $sourceRoot/extern/aurora - cp -r ${srcs.aurora-src}/. $sourceRoot/extern/aurora/ - chmod -R u+w $sourceRoot/extern/aurora sed -i '/add_subdirectory(tests)/d' $sourceRoot/extern/aurora/CMakeLists.txt ''; # Remove last line to re-enable tests @@ -225,4 +216,4 @@ default = mkDevShell (pkgsFor system); }); }; -} \ No newline at end of file +}