Skip to content

Commit

Permalink
feat: Fix the issue with concating packages to built devshell
Browse files Browse the repository at this point in the history
  • Loading branch information
uttarayan21 committed May 25, 2024
1 parent d404358 commit 8d86e26
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,16 @@
};

devShells.default =
(craneLib.overrideToolchain stableToolchainWithRustAnalyzer).devShell commonArgs
// {
buildInputs = [];
nativeBuildInputs = [];
packages = with pkgs; [
cargo-nextest
cargo-criterion
];
};
(craneLib.overrideToolchain stableToolchainWithRustAnalyzer).devShell
({
buildInputs = [];
nativeBuildInputs = [];
packages = with pkgs; [
cargo-nextest
cargo-criterion
];
}
// commonArgs);
}
);
}

0 comments on commit 8d86e26

Please sign in to comment.