We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88fb72b commit 93ec1e0Copy full SHA for 93ec1e0
misc/nix/shell.nix
@@ -7,7 +7,8 @@
7
# the Business Source License, use of this software will be governed
8
# by the Apache License, Version 2.0.
9
10
-with import <nixpkgs> {};
+{ pkgs ? import <nixpkgs> {} }:
11
+with pkgs;
12
13
let
14
target-analyzer = builtins.toString ./../../.rust-analyzer/target;
@@ -18,13 +19,13 @@ in
18
19
stdenv.mkDerivation rec {
20
name = "materialize";
21
buildInputs = with pkgs; [
- clang_13
22
+ clang_14
23
cmake
24
rustup
25
openssl
26
postgresql
27
pkg-config
- lld_13
28
+ lld_14
29
python39
30
scoped-rust-analyzer
31
];
0 commit comments