devenv/nix-ld.nix

9 lines
199 B
Nix
Raw Normal View History

2022-10-20 10:31:00 +02:00
{ 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";
}