-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathshell.nix
More file actions
44 lines (41 loc) · 676 Bytes
/
shell.nix
File metadata and controls
44 lines (41 loc) · 676 Bytes
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
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-25.11";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShell {
packages = with pkgs; [
cmake
git
curl
pkg-config
patchelf
boost
icu
glm
libarchive
tinyxml-2
libpng
sdl3
sdl3-image
glew-egl
vulkan-headers
vulkan-loader
vulkan-validation-layers
shaderc
glslang
opencl-headers
ocl-icd
jsoncpp
eigen
python3
zeromq
cppzmq
netcdf
openexr_3
eccodes
];
BUILD_USE_NIX = "ON";
shellHook = ''
echo "Run ./build.sh to build the application with Nix."
'';
}