Andreas Zweili 2023-01-16 17:36:53 +01:00
parent 3811615516
commit aff2a3ee7e
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
{ pkgs, ... }: {
programs.nix-ld = {
enable = true;
libraries = with pkgs; [
stdenv.cc.cc
curl
openssl
zlib
];
};
}