remmina: remove webkitgtk dependency
It was used by "survey" module which was removed in revision d97920eb9b32dbe17b85f8eff12928d26c19fd3d of their repository on 2016-12-13. Meanwhile, WebKit plugin is a separate package https://aur.archlinux.org/packages/remmina-plugin-webkit/ not packaged in nixpkgs.
This commit is contained in:
parent
6b81005e66
commit
8ec6322711
|
@ -1,16 +1,15 @@
|
|||
{ stdenv, fetchFromGitLab, cmake, pkgconfig, wrapGAppsHook
|
||||
, glib, gtk3, gettext, libxkbfile, libgnome-keyring, libX11
|
||||
, freerdp, libssh, libgcrypt, gnutls, makeDesktopItem
|
||||
, pcre, webkitgtk, libdbusmenu-gtk3, libappindicator-gtk3
|
||||
, pcre, libdbusmenu-gtk3, libappindicator-gtk3
|
||||
, libvncserver, libpthreadstubs, libXdmcp, libxkbcommon
|
||||
, libsecret, spice-protocol, spice-gtk, epoxy, at-spi2-core
|
||||
, libsecret, libsoup, spice-protocol, spice-gtk, epoxy, at-spi2-core
|
||||
, openssl, gsettings-desktop-schemas, json-glib
|
||||
# The themes here are soft dependencies; only icons are missing without them.
|
||||
, hicolor-icon-theme, adwaita-icon-theme
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.2.32";
|
||||
|
||||
desktopItem = makeDesktopItem {
|
||||
name = "remmina";
|
||||
|
@ -22,8 +21,9 @@ let
|
|||
categories = "GTK;GNOME;X-GNOME-NetworkSettings;Network;";
|
||||
};
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "remmina-${version}";
|
||||
version = "1.2.32";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "Remmina";
|
||||
|
@ -36,9 +36,9 @@ in stdenv.mkDerivation {
|
|||
buildInputs = [ cmake wrapGAppsHook gsettings-desktop-schemas
|
||||
glib gtk3 gettext libxkbfile libgnome-keyring libX11
|
||||
freerdp libssh libgcrypt gnutls
|
||||
pcre webkitgtk libdbusmenu-gtk3 libappindicator-gtk3
|
||||
pcre libdbusmenu-gtk3 libappindicator-gtk3
|
||||
libvncserver libpthreadstubs libXdmcp libxkbcommon
|
||||
libsecret spice-protocol spice-gtk epoxy at-spi2-core
|
||||
libsecret libsoup spice-protocol spice-gtk epoxy at-spi2-core
|
||||
openssl hicolor-icon-theme adwaita-icon-theme json-glib ];
|
||||
|
||||
cmakeFlags = [
|
||||
|
|
Loading…
Reference in New Issue