remmina: Set WITH_VTE=true, so remmina usable as ssh client
This commit is contained in:
parent
d701e77a12
commit
ee21acc36a
1 changed files with 5 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ lib, stdenv, fetchFromGitLab, cmake, ninja, pkg-config, wrapGAppsHook
|
{ lib, stdenv, fetchFromGitLab, cmake, ninja, pkg-config, wrapGAppsHook
|
||||||
, glib, gtk3, gettext, libxkbfile, libX11
|
, glib, gtk3, gettext, libxkbfile, libX11
|
||||||
, freerdp, libssh, libgcrypt, gnutls
|
, freerdp, libssh, libgcrypt, gnutls, vte
|
||||||
, pcre2, libdbusmenu-gtk3, libappindicator-gtk3
|
, pcre2, libdbusmenu-gtk3, libappindicator-gtk3
|
||||||
, libvncserver, libpthreadstubs, libXdmcp, libxkbcommon
|
, libvncserver, libpthreadstubs, libXdmcp, libxkbcommon
|
||||||
, libsecret, libsoup, spice-protocol, spice-gtk, libepoxy, at-spi2-core
|
, libsecret, libsoup, spice-protocol, spice-gtk, libepoxy, at-spi2-core
|
||||||
|
@ -8,6 +8,7 @@
|
||||||
# The themes here are soft dependencies; only icons are missing without them.
|
# The themes here are soft dependencies; only icons are missing without them.
|
||||||
, gnome
|
, gnome
|
||||||
, withLibsecret ? true
|
, withLibsecret ? true
|
||||||
|
, withVte ? true
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
@ -33,10 +34,11 @@ stdenv.mkDerivation rec {
|
||||||
libsoup spice-protocol spice-gtk libepoxy at-spi2-core
|
libsoup spice-protocol spice-gtk libepoxy at-spi2-core
|
||||||
openssl gnome.adwaita-icon-theme json-glib libsodium webkitgtk
|
openssl gnome.adwaita-icon-theme json-glib libsodium webkitgtk
|
||||||
harfbuzz
|
harfbuzz
|
||||||
] ++ optionals withLibsecret [ libsecret ];
|
] ++ optionals withLibsecret [ libsecret ]
|
||||||
|
++ optionals withVte [ vte ];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DWITH_VTE=OFF"
|
"-DWITH_VTE=${if withVte then "ON" else "OFF"}"
|
||||||
"-DWITH_TELEPATHY=OFF"
|
"-DWITH_TELEPATHY=OFF"
|
||||||
"-DWITH_AVAHI=OFF"
|
"-DWITH_AVAHI=OFF"
|
||||||
"-DWITH_LIBSECRET=${if withLibsecret then "ON" else "OFF"}"
|
"-DWITH_LIBSECRET=${if withLibsecret then "ON" else "OFF"}"
|
||||||
|
|
Loading…
Reference in a new issue