We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 587cbcf + 63ccbd7 commit a0dd406Copy full SHA for a0dd406
.envrc
@@ -0,0 +1,5 @@
1
+# SPDX-FileCopyrightText: 2021 Serokell <https://serokell.io/>
2
+#
3
+# SPDX-License-Identifier: MPL-2.0
4
+
5
+use flake
flake.nix
@@ -143,7 +143,17 @@
143
144
devShell = pkgs.mkShell {
145
inputsFrom = [ self.packages.${system}.deploy-rs ];
146
- buildInputs = [ pkgs.nixUnstable pkgs.rust-analyzer pkgs.rustfmt ];
+ RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
147
+ buildInputs = with pkgs; [
148
+ nixUnstable
149
+ cargo
150
+ rustc
151
+ rust-analyzer
152
+ rustfmt
153
+ clippy
154
+ reuse
155
+ rust.packages.stable.rustPlatform.rustLibSrc
156
+ ];
157
};
158
159
checks = {
0 commit comments