23 lines
283 B
Nix
23 lines
283 B
Nix
|
|
{ pkgs, ... }:
|
||
|
|
{
|
||
|
|
programs.nix-ld = {
|
||
|
|
enable = true;
|
||
|
|
libraries = with pkgs; [
|
||
|
|
stdenv.cc.cc
|
||
|
|
zlib
|
||
|
|
zstd
|
||
|
|
curl
|
||
|
|
openssl
|
||
|
|
attr
|
||
|
|
libssh
|
||
|
|
bzip2
|
||
|
|
libxml2
|
||
|
|
acl
|
||
|
|
libsodium
|
||
|
|
util-linux
|
||
|
|
xz
|
||
|
|
systemd
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|