9 lines
199 B
Nix
9 lines
199 B
Nix
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
|
||
|
with pkgs;
|
||
|
|
||
|
mkShell {
|
||
|
NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [ stdenv.cc.cc openssl ];
|
||
|
NIX_LD = lib.fileContents "${stdenv.cc}/nix-support/dynamic-linker";
|
||
|
}
|