server/nix/source.nix

14 lines
400 B
Nix
Raw Normal View History

2024-08-24 18:37:18 +02:00
{
lib,
fetchFromGitHub,
}: {
2024-08-26 20:23:47 +02:00
outputHash.x86_64-linux = "sha256-3rLmKyJLQ6hwOVdFt0AVonOfXj07usxqpchqlqfFa10=";
outputHash.aarch64-linux = "sha256-HNgtt6nZlC9hFW6JqgAtWkMedHPg+ajTBJg7C0UaspI=";
2024-08-24 18:37:18 +02:00
src = fetchFromGitHub {
owner = "lysand-org";
repo = "server";
2024-08-26 20:23:47 +02:00
rev = "0ac540132aa3e51ea5464c40a92ce1edb5effdfe";
hash = "sha256-J2//W/3+hXV2m/1ai3Y40zb1QKO4drv5MOhzDfqF0V8=";
2024-08-24 18:37:18 +02:00
};
}