add #fuzz devshell and make fuzzing work on nixos

This commit is contained in:
Alex Auvolat
2026-05-01 17:30:12 +02:00
committed by Alex
parent a25ad494cc
commit ddc42c89fb
4 changed files with 20 additions and 6 deletions
+8
View File
@@ -148,6 +148,14 @@ let
in rec {
toolchain = toolchainFn pkgs;
toolchainNightly = pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
targets = lib.optionals (target != null) [ rustTarget ];
extensions = [
"rust-src"
"rustfmt"
];
});
devShell = pkgs.mkShell {
buildInputs = [
toolchain