ncurses: support termlib

+2
+2
pkgs/development/libraries/ncurses/default.nix
··· 9 , enableStatic ? stdenv.hostPlatform.isStatic 10 , withCxx ? !stdenv.hostPlatform.useAndroidPrebuilt 11 , mouseSupport ? false, gpm 12 , unicodeSupport ? true 13 , testers 14 , binlore ··· 38 ++ lib.optional (!withCxx) "--without-cxx" 39 ++ lib.optional (abiVersion == "5") "--with-abi-version=5" 40 ++ lib.optional stdenv.hostPlatform.isNetBSD "--enable-rpath" 41 ++ lib.optionals stdenv.hostPlatform.isWindows [ 42 "--enable-sp-funcs" 43 "--enable-term-driver"
··· 9 , enableStatic ? stdenv.hostPlatform.isStatic 10 , withCxx ? !stdenv.hostPlatform.useAndroidPrebuilt 11 , mouseSupport ? false, gpm 12 + , withTermlib ? false 13 , unicodeSupport ? true 14 , testers 15 , binlore ··· 39 ++ lib.optional (!withCxx) "--without-cxx" 40 ++ lib.optional (abiVersion == "5") "--with-abi-version=5" 41 ++ lib.optional stdenv.hostPlatform.isNetBSD "--enable-rpath" 42 + ++ lib.optional withTermlib "--with-termlib" 43 ++ lib.optionals stdenv.hostPlatform.isWindows [ 44 "--enable-sp-funcs" 45 "--enable-term-driver"