This commit is contained in:
Christoph Schmatzler
2025-08-11 15:08:28 +02:00
parent 96e7b07d4b
commit 55cc094ec0

View File

@@ -5,9 +5,10 @@
enableZshIntegration = true;
globalConfig = {
env = {
KERL_CONFIGURE_OPTIONS = "--with-termcap";
CPPFLAGS = "-I${pkgs.ncurses.dev}/include";
LDFLAGS = "-L${pkgs.ncurses.out}/lib";
KERL_CONFIGURE_OPTIONS = "--with-termcap --with-ssl=${pkgs.openssl.dev}";
CPPFLAGS = "-I${pkgs.ncurses.dev}/include -I${pkgs.openssl.dev}/include";
LDFLAGS = "-L${pkgs.ncurses.out}/lib -L${pkgs.openssl.out}/lib";
PKG_CONFIG_PATH = "${pkgs.ncurses.dev}/lib/pkgconfig:${pkgs.openssl.dev}/lib/pkgconfig";
};
};
};