mirror of
https://github.com/mx42/nix_spacetimedb.git
synced 2026-01-14 05:39:52 +01:00
8 lines
205 B
Nix
Executable File
8 lines
205 B
Nix
Executable File
let
|
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
|
|
pkgs = import nixpkgs { config = {}; overlays = []; };
|
|
in
|
|
{
|
|
spacetimedb = pkgs.callPackage ./spacetimedb.nix {};
|
|
}
|