diff options
author | Alexander Bantyev | 2021-08-04 12:09:54 +0300 |
---|---|---|
committer | GitHub | 2021-08-04 12:09:54 +0300 |
commit | 2d06590cb0ea6a6e0f54866661cc5e665433bc71 (patch) | |
tree | 805a20aa25b93cc8b5d81387287d6d2eb4e2d5de | |
parent | cfa203b1d344bb68b995a15a8adeb4f23da09ab5 (diff) | |
parent | a0dd40684d292203b751f6e49c369503f83d1c2a (diff) |
Merge branch 'master' into as-lib
-rw-r--r-- | .envrc | 5 | ||||
-rw-r--r-- | flake.nix | 12 |
2 files changed, 16 insertions, 1 deletions
@@ -0,0 +1,5 @@ +# SPDX-FileCopyrightText: 2021 Serokell <https://serokell.io/> +# +# SPDX-License-Identifier: MPL-2.0 + +use flake @@ -143,7 +143,17 @@ devShell = pkgs.mkShell { inputsFrom = [ self.packages.${system}.deploy-rs ]; - buildInputs = [ pkgs.nixUnstable pkgs.rust-analyzer pkgs.rustfmt ]; + RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}"; + buildInputs = with pkgs; [ + nixUnstable + cargo + rustc + rust-analyzer + rustfmt + clippy + reuse + rust.packages.stable.rustPlatform.rustLibSrc + ]; }; checks = { |