use nightly in devShell

This commit is contained in:
Noa Aarts 2024-10-19 14:06:29 +02:00
parent de3248c3c6
commit 96e9bd8f28
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -37,13 +37,17 @@
src = pkgs.lib.cleanSource ./.;
};
});
devShell = forAllSystems ({ system, pkgs, ... }:
devShell = forAllSystems ({ system, pkgs, fpkgs }:
let
ffpkgs = fpkgs.complete;
in
pkgs.mkShell {
buildInputs = [
pkgs.rustup
pkgs.wgo
pkgs.cargo-flamegraph
pkgs.cargo-udeps
ffpkgs.cargo
ffpkgs.clippy
ffpkgs.rust-src
ffpkgs.rustc
ffpkgs.rustfmt
];
});
};