let nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-25.11"; pkgs = import nixpkgs { config = {}; overlays = []; }; in { serverUrl ? "" }: { pinepods = pkgs.callPackage ./pinepods.nix { # Pin wasm-bindgen-cli to exactly the version PinePods requires wasm-bindgen-cli = pkgs.wasm-bindgen-cli_0_2_105; inherit (pkgs) binaryen tailwindcss_3 libayatana-appindicator gst_all_1 python3; inherit serverUrl; }; }