clean up and final touches

This commit is contained in:
2026-03-06 13:22:54 -05:00
parent d51bb39659
commit 3bb0ac8aee
2 changed files with 26 additions and 11 deletions

View File

@@ -1,11 +1,11 @@
let
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-25.11";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
in
{
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;
};
pinepods-frontend = (pkgs.callPackage ./pinepods.nix { }).frontend;
}
}