mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
531e4b80c9
Only acts on one-line dependency lists.
72 lines
2.3 KiB
Nix
72 lines
2.3 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, wrapGAppsHook
|
|
, glib, gtk3, gettext, libxkbfile, libgnome_keyring, libX11
|
|
, freerdp, libssh, libgcrypt, gnutls, makeDesktopItem
|
|
, pcre, webkitgtk, libdbusmenu-gtk3, libappindicator-gtk3
|
|
, libvncserver, libpthreadstubs, libXdmcp, libxkbcommon
|
|
, libsecret, spice_protocol, spice_gtk, epoxy, at_spi2_core
|
|
, openssl, gsettings_desktop_schemas
|
|
# The themes here are soft dependencies; only icons are missing without them.
|
|
, hicolor_icon_theme, adwaita-icon-theme
|
|
}:
|
|
|
|
let
|
|
version = "1.2.0-rcgit.17";
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "remmina";
|
|
desktopName = "Remmina";
|
|
genericName = "Remmina Remote Desktop Client";
|
|
exec = "remmina";
|
|
icon = "remmina";
|
|
comment = "Connect to remote desktops";
|
|
categories = "GTK;GNOME;X-GNOME-NetworkSettings;Network;";
|
|
};
|
|
|
|
in stdenv.mkDerivation {
|
|
name = "remmina-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FreeRDP";
|
|
repo = "Remmina";
|
|
rev = "v${version}";
|
|
sha256 = "1vfg8sfpj83ircp7ny6xsbn2ba5xbp3xrdl5wwyfcg1zrpdmi7f1";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ cmake wrapGAppsHook gsettings_desktop_schemas
|
|
glib gtk3 gettext libxkbfile libgnome_keyring libX11
|
|
freerdp libssh libgcrypt gnutls
|
|
pcre webkitgtk libdbusmenu-gtk3 libappindicator-gtk3
|
|
libvncserver libpthreadstubs libXdmcp libxkbcommon
|
|
libsecret spice_protocol spice_gtk epoxy at_spi2_core
|
|
openssl hicolor_icon_theme adwaita-icon-theme ];
|
|
|
|
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"
|
|
)
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -pv $out/share/applications
|
|
cp ${desktopItem}/share/applications/* $out/share/applications
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
license = stdenv.lib.licenses.gpl2;
|
|
homepage = http://remmina.sourceforge.net/;
|
|
description = "Remote desktop client written in GTK+";
|
|
maintainers = [];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|