Initial commit

This commit is contained in:
Ryan W. Anderson
2025-04-14 18:28:10 -05:00
commit ef2cdbd215
3 changed files with 43 additions and 0 deletions

7
default.nix Executable file
View File

@@ -0,0 +1,7 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
{
spacetimedb = pkgs.callPackage ./spacetimedb.nix {};
}