feat: Add some libraries into nix-ld
This commit is contained in:
parent
1c240dcf08
commit
e8a9d45a76
1 changed files with 12 additions and 10 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
|
|
@ -15,16 +16,17 @@ in
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
programs.nix-ld = {
|
programs.nix-ld = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# libraries = with pkgs; [
|
libraries = with pkgs; [
|
||||||
# stdenv.cc.cc
|
stdenv.cc.cc
|
||||||
# zlib
|
zlib
|
||||||
# fuse3
|
fuse3
|
||||||
# icu
|
icu
|
||||||
# nss
|
nss
|
||||||
# openssl
|
openssl
|
||||||
# curl
|
curl
|
||||||
# expat
|
expat
|
||||||
# ];
|
rustls-libssl
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue