remmina: 1.2.0-rcgit.24 -> 1.2.30.1
The project moved to GitLab. Add @ryantm and @melsigl as maintainers. Melsigl from https://github.com/NixOS/nixpkgs/pull/41549 Closes #41549
This commit is contained in:
parent
3c77ea78ec
commit
df74d3720a
|
@ -2453,6 +2453,11 @@
|
||||||
github = "meisternu";
|
github = "meisternu";
|
||||||
name = "Matt Miemiec";
|
name = "Matt Miemiec";
|
||||||
};
|
};
|
||||||
|
melsigl = {
|
||||||
|
email = "melanie.bianca.sigl@gmail.com";
|
||||||
|
github = "melsigl";
|
||||||
|
name = "Melanie B. Sigl";
|
||||||
|
};
|
||||||
metabar = {
|
metabar = {
|
||||||
email = "softs@metabarcoding.org";
|
email = "softs@metabarcoding.org";
|
||||||
name = "Celine Mercier";
|
name = "Celine Mercier";
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, wrapGAppsHook
|
{ stdenv, fetchFromGitLab, cmake, pkgconfig, wrapGAppsHook
|
||||||
, glib, gtk3, gettext, libxkbfile, libgnome-keyring, libX11
|
, glib, gtk3, gettext, libxkbfile, libgnome-keyring, libX11
|
||||||
, freerdp, libssh, libgcrypt, gnutls, makeDesktopItem
|
, freerdp, libssh, libgcrypt, gnutls, makeDesktopItem
|
||||||
, pcre, webkitgtk, libdbusmenu-gtk3, libappindicator-gtk3
|
, pcre, webkitgtk, libdbusmenu-gtk3, libappindicator-gtk3
|
||||||
, libvncserver, libpthreadstubs, libXdmcp, libxkbcommon
|
, libvncserver, libpthreadstubs, libXdmcp, libxkbcommon
|
||||||
, libsecret, spice-protocol, spice-gtk, epoxy, at-spi2-core
|
, libsecret, spice-protocol, spice-gtk, epoxy, at-spi2-core
|
||||||
, openssl, gsettings-desktop-schemas
|
, openssl, gsettings-desktop-schemas, json-glib
|
||||||
# The themes here are soft dependencies; only icons are missing without them.
|
# The themes here are soft dependencies; only icons are missing without them.
|
||||||
, hicolor-icon-theme, adwaita-icon-theme
|
, hicolor-icon-theme, adwaita-icon-theme
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "1.2.0-rcgit.24";
|
version = "1.2.30.1";
|
||||||
|
|
||||||
desktopItem = makeDesktopItem {
|
desktopItem = makeDesktopItem {
|
||||||
name = "remmina";
|
name = "remmina";
|
||||||
|
@ -25,11 +25,11 @@ let
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
name = "remmina-${version}";
|
name = "remmina-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitLab {
|
||||||
owner = "FreeRDP";
|
owner = "Remmina";
|
||||||
repo = "Remmina";
|
repo = "Remmina";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1x7kygl9a5nh7rf2gfrk0wwv23mbw7rrjms402l3zp1w53hrhwmg";
|
sha256 = "1jz20yv84a8m9gm9fsz0jii8ag90v1scmbkkx9gk38ax5il7ilvn";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
@ -39,7 +39,7 @@ in stdenv.mkDerivation {
|
||||||
pcre webkitgtk libdbusmenu-gtk3 libappindicator-gtk3
|
pcre webkitgtk libdbusmenu-gtk3 libappindicator-gtk3
|
||||||
libvncserver libpthreadstubs libXdmcp libxkbcommon
|
libvncserver libpthreadstubs libXdmcp libxkbcommon
|
||||||
libsecret spice-protocol spice-gtk epoxy at-spi2-core
|
libsecret spice-protocol spice-gtk epoxy at-spi2-core
|
||||||
openssl hicolor-icon-theme adwaita-icon-theme ];
|
openssl hicolor-icon-theme adwaita-icon-theme json-glib ];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DWITH_VTE=OFF"
|
"-DWITH_VTE=OFF"
|
||||||
|
@ -64,9 +64,9 @@ in stdenv.mkDerivation {
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
homepage = http://remmina.sourceforge.net/;
|
homepage = https://gitlab.com/Remmina/Remmina;
|
||||||
description = "Remote desktop client written in GTK+";
|
description = "Remote desktop client written in GTK+";
|
||||||
maintainers = [];
|
maintainers = with maintainers; [ melsigl ryantm ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue