server/nix/source.nix

14 lines
318 B
Nix
Raw Normal View History

2024-08-24 18:37:18 +02:00
{
lib,
fetchFromGitHub,
}: {
2024-08-26 19:53:43 +02:00
outputHash.x86_64-linux = lib.fakeHash;
outputHash.aarch64-linux = lib.fakeHash;
2024-08-24 18:37:18 +02:00
src = fetchFromGitHub {
owner = "lysand-org";
repo = "server";
2024-08-26 19:53:43 +02:00
rev = "fbe86043b7e276ab123f29c234d5ef6d9724536f";
hash = "sha256-yUc/50rhYrPkldO77ujf2+CHujbxVzS/QBPfu7B07+8=";
2024-08-24 18:37:18 +02:00
};
}