We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a35e72 commit e79e412Copy full SHA for e79e412
shell.nix
@@ -2,17 +2,21 @@ with (import <nixpkgs> {});
2
mkShell {
3
buildInputs = [
4
# Base
5
+ stdenv
6
+ cacert
7
curl
8
wget
9
git
10
openssh
11
cmake
12
ninja
- gcc
- gfortran
13
+ gcc14
14
+ gfortran14
15
mpi
16
+ python313
17
18
# Libs
19
+ zlib
20
openblas
21
suitesparse
22
hdf5
@@ -33,5 +37,8 @@ mkShell {
33
37
export CC=gcc
34
38
export CXX=g++
35
39
export FC=gfortran
40
+ export LD_LIBRARY_PATH=${pkgs.lib.makeLibraryPath [
41
+ pkgs.stdenv.cc.cc
42
+ ]}:${pkgs.zlib}/lib
36
43
'';
44
}
0 commit comments