-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshell.nix
68 lines (55 loc) · 1.94 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
# This is a helper file for people using NixOs as their Operating System
# > If you don't know what this file does you can safely ignore it :D
# If you are using nix as your package manager, you can run 'nix-shell'
# in the root directory of the project and nix will open a bash shell
# with all the packages needed to build and run Graphite installed.
# A shell.nix file is used in the Nix ecosystem to define a development
# environment with specific dependencies. When you enter a Nix shell using
# this file, it ensures that all the specified tools and libraries are
# available regardless of the host system's configuration. This provides
# a reproducible development environment across different machines and developers.
# If you don't need the shell, you can build Graphite using this command:
# nix-shell --command "npm start"
let
# Get oxalica's Rust overlay for better Rust integration
rust-overlay-source = builtins.fetchGit {
url = "https://github.com/oxalica/rust-overlay";
};
# Import it so we can use it in Nix
rust-overlay = import rust-overlay-source;
# Import system packages overlaid with the Rust overlay
pkgs = import <nixpkgs> {
overlays = [ rust-overlay ];
};
# Define the rustc we need
rustc = pkgs.rust-bin.stable.latest.default.override {
extensions = [ "clippy" "rust-analyzer" ];
};
lib = pkgs.lib;
in
# Make a shell with the dependencies we need
pkgs.mkShell {
buildInputs = [
rustc
pkgs.nodejs
pkgs.cargo
pkgs.clang
pkgs.openssl
pkgs.openssl.dev
pkgs.pkg-config
# Use Mold as a Linker
pkgs.mold
];
# Hacky way to run cago through Mold
shellHook = ''
alias cargo='mold --run cargo'
'';
LD_LIBRARY_PATH = lib.makeLibraryPath [
pkgs.openssl
pkgs.freetype
pkgs.fontconfig
pkgs.expat
pkgs.libGL
];
#VULKAN_SDK = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d";
}