Update xK

This commit is contained in:
2026-07-20 01:23:02 +02:00
parent af116224d4
commit e721d93fb2
-7
View File
@@ -18,11 +18,9 @@ pkgs.stdenv.mkDerivation rec {
buildInputs = with pkgs; [
openssl
libffi
ncurses
libiconv
] ++ lib.optionals full [
readline
lua5_3
# xB plugins
@@ -33,8 +31,6 @@ pkgs.stdenv.mkDerivation rec {
python3
] ++ lib.optionals (full && !tinycc.meta.broken) [
tinycc
] ++ lib.optionals (!full) [
libedit
];
src = if local then
@@ -51,9 +47,6 @@ pkgs.stdenv.mkDerivation rec {
cmakeFlags = [
"-DBUILD_TESTING=ON"
] ++ pkgs.lib.optionals (!full) [
"-DWANT_READLINE=OFF"
"-DWANT_LIBEDIT=ON"
];
xP = pkgs.buildGoModule rec {