mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 11:04:40 -05:00
* feat: allow using different error types for request/response with WebSocket * [autofix.ci] apply automated fixes * chore: clean up merge issues * chore: fix custom client example * we can't use nightly features on stable * update flake inputs * include gcc and glib to flake dev shell * update expected stderr outputs server_fn/tests/invalid --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Greg Johnston <greg.johnston@gmail.com>
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{
|
|
description = "A basic Rust devshell for NixOS users developing Leptos";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
rust-overlay.url = "github:oxalica/rust-overlay";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
nixpkgs,
|
|
rust-overlay,
|
|
flake-utils,
|
|
...
|
|
}:
|
|
flake-utils.lib.eachDefaultSystem (
|
|
system:
|
|
let
|
|
overlays = [ (import rust-overlay) ];
|
|
pkgs = import nixpkgs {
|
|
inherit system overlays;
|
|
};
|
|
in
|
|
with pkgs;
|
|
{
|
|
devShells.default = mkShell {
|
|
buildInputs =
|
|
[
|
|
gcc
|
|
glib
|
|
openssl
|
|
pkg-config
|
|
cacert
|
|
cargo-make
|
|
trunk
|
|
(rust-bin.selectLatestNightlyWith (
|
|
toolchain:
|
|
toolchain.default.override {
|
|
extensions = [
|
|
"rust-src"
|
|
"rust-analyzer"
|
|
];
|
|
targets = [ "wasm32-unknown-unknown" ];
|
|
}
|
|
))
|
|
]
|
|
++ pkgs.lib.optionals pkg.stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
];
|
|
|
|
shellHook = '''';
|
|
};
|
|
}
|
|
);
|
|
}
|