Merge pull request #266368 from bbigras/remmina

authored by Maciej Krüger and committed by GitHub 2344fe1d 49a204d4

+5 -13
+5 -13
pkgs/applications/networking/remote/remmina/default.nix
··· 1 - { lib, stdenv, fetchFromGitLab, fetchpatch, cmake, ninja, pkg-config, wrapGAppsHook 1 + { lib, stdenv, fetchFromGitLab, cmake, ninja, pkg-config, wrapGAppsHook 2 2 , desktopToDarwinBundle 3 3 , glib, gtk3, gettext, libxkbfile, libX11, python3 4 4 , freerdp, libssh, libgcrypt, gnutls, vte ··· 15 15 16 16 stdenv.mkDerivation (finalAttrs: { 17 17 pname = "remmina"; 18 - version = "1.4.31"; 18 + version = "1.4.33"; 19 19 20 20 src = fetchFromGitLab { 21 21 owner = "Remmina"; 22 22 repo = "Remmina"; 23 - rev = "v${finalAttrs.version}"; 24 - sha256 = "sha256-oEgpav4oQ9Sld9PY4TsutS5xEnhQgOHnpQhDesRFTeQ="; 23 + rev = "v.${finalAttrs.version}"; 24 + sha256 = "sha256-3HyG2PBnTq/fVsvWA81fQ2gCOoAxINWeUDwzKcOuECk="; 25 25 }; 26 - 27 - patches = [ 28 - # https://gitlab.com/Remmina/Remmina/-/merge_requests/2525 29 - (fetchpatch { 30 - url = "https://gitlab.com/Remmina/Remmina/-/commit/2ce153411597035d0f3db5177d703541e09eaa06.patch"; 31 - hash = "sha256-RV/8Ze9aN4dW49Z+y3z0jFs4dyEWu7DK2FABtmse9Hc="; 32 - }) 33 - ]; 34 26 35 27 nativeBuildInputs = [ cmake ninja pkg-config wrapGAppsHook ] 36 28 ++ lib.optionals stdenv.isDarwin [ desktopToDarwinBundle ]; ··· 89 81 license = licenses.gpl2Plus; 90 82 homepage = "https://gitlab.com/Remmina/Remmina"; 91 83 description = "Remote desktop client written in GTK"; 92 - maintainers = with maintainers; [ melsigl ryantm ]; 84 + maintainers = with maintainers; [ bbigras melsigl ryantm ]; 93 85 platforms = platforms.linux ++ platforms.darwin; 94 86 }; 95 87 })