mirror of
https://github.com/ipnet-mesh/meshcore-hub.git
synced 2026-06-26 04:51:59 +02:00
11 lines
248 B
Nix
11 lines
248 B
Nix
with import <nixpkgs> {};
|
|
mkShell {
|
|
NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [
|
|
stdenv.cc.cc
|
|
];
|
|
NIX_LD = lib.fileContents "${stdenv.cc}/nix-support/dynamic-linker";
|
|
shellHook = ''
|
|
export LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH
|
|
'';
|
|
}
|