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-27 16:01:10 +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-27 16:01:10 +02:00
rev = "fbb845f7f8ee97e51ff57edba3817224341d3078";
hash = "sha256-pc5t6z/AE+NPZEzXxTlzT76jq5PF7Mvjh94A0NCBDh8=";
2024-08-24 18:37:18 +02:00
};
}