Fixed default.nix import errors

This commit is contained in:
Ryan W. Anderson
2025-04-15 11:56:17 -05:00
parent 88b410162c
commit ec47a4f0a2

View File

@@ -1,10 +1,13 @@
{ {
stdenv, pkgs ? import <nixpkgs> {},
lib,
fetchurl,
autoPatchelfHook,
libgcc,
}: }:
let
stdenv = pkgs.stdenv;
lib = pkgs.lib;
fetchurl = pkgs.fetchurl;
autoPatchelfHook = pkgs.autoPatchelfHook;
libgcc = pkgs.libgcc;
in
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "spacetimedb"; pname = "spacetimedb";
version = "1.0.1"; version = "1.0.1";