-
Notifications
You must be signed in to change notification settings - Fork 1
/
_shell.nix
43 lines (39 loc) · 996 Bytes
/
_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
let
mozillaOverlay =
import (builtins.fetchGit {
url = "https://github.com/mozilla/nixpkgs-mozilla.git";
rev = "4a07484cf0e49047f82d83fd119acffbad3b235f";
});
nixpkgs = import <nixpkgs> { overlays = [ mozillaOverlay ]; };
rust-nightly = with nixpkgs; ((rustChannelOf { date = "2021-10-14"; channel = "nightly"; }).rust.override {
extensions = [ "rust-src" ];
targets = [ "wasm32-unknown-unknown" ];
});
in
with nixpkgs;
pkgs.mkShell {
buildInputs = [
figlet
nodejs-16_x
nodePackages.pnpm
neovim
git
clang
openssl.dev
pkg-config
rust-nightly
wasm-pack
];
# env variables
RUST_SRC_PATH = "${rust-nightly}/src/rustlib/src/rust/src";
LIBCLANG_PATH = "${llvmPackages.libclang.src}/src";
PROTOC = "${protobuf}/bin/protoc";
ROCKSDB_LIB_DIR = "${rocksdb}/src";
# env variables
shellHook = ''
alias ll="ls -l"
alias la="ls -la"
alias lah="ls -lah"
echo "Welcome ƒªÇ" | figlet
'';
}