fix: 🐛 Add correct Nix output hash

This commit is contained in:
Jesse Wierzbinski 2024-08-26 20:23:47 +02:00
parent 0ac540132a
commit 0da6d508f3
No known key found for this signature in database

View file

@ -2,12 +2,12 @@
lib, lib,
fetchFromGitHub, fetchFromGitHub,
}: { }: {
outputHash.x86_64-linux = lib.fakeHash; outputHash.x86_64-linux = "sha256-3rLmKyJLQ6hwOVdFt0AVonOfXj07usxqpchqlqfFa10=";
outputHash.aarch64-linux = lib.fakeHash; outputHash.aarch64-linux = "sha256-HNgtt6nZlC9hFW6JqgAtWkMedHPg+ajTBJg7C0UaspI=";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lysand-org"; owner = "lysand-org";
repo = "server"; repo = "server";
rev = "fbe86043b7e276ab123f29c234d5ef6d9724536f"; rev = "0ac540132aa3e51ea5464c40a92ce1edb5effdfe";
hash = "sha256-yUc/50rhYrPkldO77ujf2+CHujbxVzS/QBPfu7B07+8="; hash = "sha256-J2//W/3+hXV2m/1ai3Y40zb1QKO4drv5MOhzDfqF0V8=";
}; };
} }