-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathshell.nix
73 lines (68 loc) · 2.54 KB
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{ norust ? false, devrustup ? true, rust-profile ? "stable" }:
let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs {
overlays = [ (_: _: { inherit sources; }) (import ./nix/overlay.nix { }) (import sources.rust-overlay) ];
};
lib = pkgs.lib;
in
let
norust_moth =
"You have requested an environment without rust, you should provide it!";
devrustup_moth =
"You have requested an environment for rustup, you should provide it!";
channel = import ./nix/lib/rust.nix { inherit pkgs; };
rust_chan = channel.default_src;
rust = rust_chan.${rust-profile};
k8sShellAttrs = import ./scripts/k8s/shell.nix { inherit pkgs; };
helmShellAttrs = import ./chart/shell.nix { inherit pkgs; };
bddShellAttrs = import ./tests/bdd/shell.nix { inherit pkgs; };
buildInputs = with pkgs; [
cacert
cargo-expand
cargo-udeps
clang
commitlint
coreutils
cowsay
git
llvmPackages.libclang
niv
nixpkgs-fmt
paperclip
openssl
pkg-config
pre-commit
utillinux
];
in
pkgs.mkShell {
name = "extensions-shell";
buildInputs = buildInputs ++ pkgs.lib.optional (!norust) rust
++ k8sShellAttrs.buildInputs ++ helmShellAttrs.buildInputs ++ bddShellAttrs.buildInputs
++ pkgs.lib.optional (pkgs.system == "aarch64-darwin") pkgs.darwin.apple_sdk.frameworks.Security;
PROTOC = "${pkgs.protobuf}/bin/protoc";
PROTOC_INCLUDE = "${pkgs.protobuf}/include";
NODE_PATH = "${pkgs.nodePackages."@commitlint/config-conventional"}/lib/node_modules";
# using the nix rust toolchain
USE_NIX_RUST = "${toString (!norust)}";
# copy the rust toolchain to a writable directory, see: https://github.com/rust-lang/cargo/issues/10096
# the whole toolchain is copied to allow the src to be retrievable through "rustc --print sysroot"
RUST_TOOLCHAIN = ".rust-toolchain/${rust.version}";
RUST_TOOLCHAIN_NIX = "${rust}";
shellHook = ''
./scripts/nix/git-submodule-init.sh
if [ -z "$CI" ]; then
echo
pre-commit install
pre-commit install --hook commit-msg
fi
export EXTENSIONS_SRC=`pwd`
export CTRL_SRC="$EXTENSIONS_SRC"/dependencies/control-plane
export PATH="$PATH:$(pwd)/target/debug"
${lib.optionalString (norust) "cowsay ${norust_moth}"}
${lib.optionalString (norust) "echo"}
rust_version="${rust.version}" rustup_channel="${lib.strings.concatMapStringsSep "-" (x: x) (lib.lists.drop 1 (lib.strings.splitString "-" rust.version))}" \
dev_rustup="${toString (devrustup)}" devrustup_moth="${devrustup_moth}" . "$CTRL_SRC"/scripts/rust/env-setup.sh
'';
}