builds correctly, errors on open

This commit is contained in:
2026-03-03 19:12:18 -05:00
parent 288a60cfa1
commit f0e7b822eb
3 changed files with 17 additions and 7 deletions

View File

@@ -3,6 +3,9 @@ let
pkgs = import nixpkgs { config = {}; overlays = []; };
in
{
pinepods = pkgs.callPackage ./pinepods.nix { };
pinepods = pkgs.callPackage ./pinepods.nix {
wasm-bindgen-cli = pkgs.wasm-bindgen-cli_0_2_105;
inherit (pkgs) binaryen tailwindcss_3;
};
pinepods-frontend = (pkgs.callPackage ./pinepods.nix { }).frontend;
}