From 0ac540132aa3e51ea5464c40a92ce1edb5effdfe Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Mon, 26 Aug 2024 19:53:43 +0200 Subject: [PATCH] chore: :green_heart: Update Nix hashes --- flake.nix | 2 +- nix/source.nix | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index c32126e6..aa4bb71d 100644 --- a/flake.nix +++ b/flake.nix @@ -36,7 +36,7 @@ }; apps.update-modules = { type = "app"; - program = self.packages.${system}.versiajs.passthru.updateScript; + program = ./nix/update.sh; }; }) // flake-utils.lib.eachDefaultSystem (system: let diff --git a/nix/source.nix b/nix/source.nix index d917326e..927bbc5e 100644 --- a/nix/source.nix +++ b/nix/source.nix @@ -2,12 +2,12 @@ lib, fetchFromGitHub, }: { - outputHash.x86_64-linux = "sha256-SbOgLEdrKA7MwkiUvmenXyfbwgrKsq3AYo4Rjlqn0YA="; - outputHash.aarch64-linux = "sha256-KJBsOhtDOmW/EVFgZF1TNB5G7mSeRZs18zwZlh1MsUM="; + outputHash.x86_64-linux = lib.fakeHash; + outputHash.aarch64-linux = lib.fakeHash; src = fetchFromGitHub { owner = "lysand-org"; repo = "server"; - rev = "832f72160f574f86c8a8897e5dcb3d6382d8192c"; - hash = "sha256-BaojznCj0WWA0KkDMLjjlYikwpn975arGLyd0lFBXm0="; + rev = "fbe86043b7e276ab123f29c234d5ef6d9724536f"; + hash = "sha256-yUc/50rhYrPkldO77ujf2+CHujbxVzS/QBPfu7B07+8="; }; }