chore: 💚 Update Nix hashes

This commit is contained in:
Jesse Wierzbinski 2024-08-26 19:53:43 +02:00
parent fbe86043b7
commit 0ac540132a
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -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=";
};
}