mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
21f4c27cfb
Co-authored-by: Gentle <ramon.klass@gmail.com>
40 lines
1.1 KiB
Nix
40 lines
1.1 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 = { self, 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 = [
|
|
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 = ''
|
|
'';
|
|
};
|
|
}
|
|
);
|
|
}
|