nixpkgs/pkgs/applications/networking/remote/remmina/default.nix

61 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, cmake, ninja, pkg-config, wrapGAppsHook
, glib, gtk3, gettext, libxkbfile, libX11
, freerdp, libssh, libgcrypt, gnutls
2021-01-15 14:30:19 +00:00
, pcre2, libdbusmenu-gtk3, libappindicator-gtk3
, libvncserver, libpthreadstubs, libXdmcp, libxkbcommon
, libsecret, libsoup, spice-protocol, spice-gtk, epoxy, at-spi2-core
, openssl, gsettings-desktop-schemas, json-glib, libsodium, webkitgtk, harfbuzz
# The themes here are soft dependencies; only icons are missing without them.
, gnome3
}:
2021-01-15 13:21:58 +00:00
with lib;
2018-11-04 23:09:22 +00:00
stdenv.mkDerivation rec {
pname = "remmina";
2021-01-15 14:30:19 +00:00
version = "1.4.10";
src = fetchFromGitLab {
owner = "Remmina";
repo = "Remmina";
rev = "v${version}";
2021-01-15 14:30:19 +00:00
sha256 = "sha256-n3YfLKCv6CoBeUIv+1yN6RIih63PTFj5zr+dZDJwYdw=";
};
nativeBuildInputs = [ cmake ninja pkg-config wrapGAppsHook ];
2018-10-19 19:14:31 +00:00
buildInputs = [
gsettings-desktop-schemas
2018-10-19 19:14:31 +00:00
glib gtk3 gettext libxkbfile libX11
freerdp libssh libgcrypt gnutls
2021-01-15 14:30:19 +00:00
pcre2 libdbusmenu-gtk3 libappindicator-gtk3
2018-10-19 19:14:31 +00:00
libvncserver libpthreadstubs libXdmcp libxkbcommon
libsecret libsoup spice-protocol spice-gtk epoxy at-spi2-core
openssl gnome3.adwaita-icon-theme json-glib libsodium webkitgtk
harfbuzz
];
cmakeFlags = [
"-DWITH_VTE=OFF"
"-DWITH_TELEPATHY=OFF"
"-DWITH_AVAHI=OFF"
"-DFREERDP_LIBRARY=${freerdp}/lib/libfreerdp2.so"
"-DFREERDP_CLIENT_LIBRARY=${freerdp}/lib/libfreerdp-client2.so"
"-DFREERDP_WINPR_LIBRARY=${freerdp}/lib/libwinpr2.so"
"-DWINPR_INCLUDE_DIR=${freerdp}/include/winpr2"
];
preFixup = ''
gappsWrapperArgs+=(
--prefix LD_LIBRARY_PATH : "${libX11.out}/lib"
)
'';
meta = {
license = licenses.gpl2;
2020-02-27 10:47:56 +00:00
homepage = "https://gitlab.com/Remmina/Remmina";
description = "Remote desktop client written in GTK";
maintainers = with maintainers; [ melsigl ryantm ];
2013-11-10 17:25:12 +00:00
platforms = platforms.linux;
};
}