mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
4cc65f837f
* nix-flake: use follows for `rust-overlay` (..) This removes the extra nixpkgs dependency by re-using the nixpkgs already defined. https://nixos.wiki/wiki/Flakes https://web.archive.org/web/20230621091703/https://nixos.wiki/wiki/Flakes > # The `follows` keyword in inputs is used for inheritance. > # Here, `inputs.nixpkgs` of sops-nix is kept consistent with the `inputs.nixpkgs` of > # the current flake, to avoid problems caused by different versions of nixpkgs. * nix-flake: use nix overlays for rustc/cargo (..) This allows the same nightly rust version to be used across the flake (vs. strictly in the `devShell`). * nix-flake: add `mdbook` to the development shell (..) bumped `nixpkgs` to the latest unstable to pull in mdbook version `0.4.30`. * nix-flake: expose all rust tools in dev environment (..) The `oxalica / rust-overlay` docs expose all tools in the development environment, so we should do the same: https://github.com/oxalica/rust-overlay#use-in-devshell-for-nix-develop --------- Co-authored-by: Jay Querie <jay@querie.cc>
38 lines
1 KiB
Nix
38 lines
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";
|
|
rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
|
|
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
|
|
mdbook
|
|
(rust-bin.selectLatestNightlyWith(toolchain: toolchain.default.override {
|
|
extensions= [ "rust-src" "rust-analyzer" ];
|
|
targets = [ "wasm32-unknown-unknown" ];
|
|
}))
|
|
];
|
|
|
|
shellHook = ''
|
|
'';
|
|
};
|
|
}
|
|
);
|
|
}
|