xfce.xfce4-eyes-plugin: 4.6.2 -> 4.7.0

https://gitlab.xfce.org/panel-plugins/xfce4-eyes-plugin/-/compare/xfce4-eyes-plugin-4.6.2...xfce4-eyes-plugin-4.7.0

+19 -16
+19 -16
pkgs/desktops/xfce/panel-plugins/xfce4-eyes-plugin/default.nix
··· 3 stdenv, 4 fetchurl, 5 gettext, 6 pkg-config, 7 libxfce4util, 8 xfce4-panel, 9 libxfce4ui, 10 - xfconf, 11 gtk3, 12 gitUpdater, 13 }: 14 15 - let 16 - category = "panel-plugins"; 17 - in 18 - stdenv.mkDerivation rec { 19 pname = "xfce4-eyes-plugin"; 20 - version = "4.6.2"; 21 22 src = fetchurl { 23 - url = "mirror://xfce/src/${category}/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2"; 24 - sha256 = "sha256-ArSsY3YEoLkmJhbLlhPg/meX+2sPH8KImnfh4K1KAaU="; 25 }; 26 27 nativeBuildInputs = [ 28 gettext 29 pkg-config 30 ]; 31 ··· 33 libxfce4util 34 libxfce4ui 35 xfce4-panel 36 - xfconf 37 gtk3 38 ]; 39 40 passthru.updateScript = gitUpdater { 41 - url = "https://gitlab.xfce.org/panel-plugins/${pname}"; 42 - rev-prefix = "${pname}-"; 43 }; 44 45 - meta = with lib; { 46 homepage = "https://docs.xfce.org/panel-plugins/xfce4-eyes-plugin"; 47 description = "Rolling eyes (following mouse pointer) plugin for the Xfce panel"; 48 - license = licenses.gpl2Plus; 49 - platforms = platforms.linux; 50 - teams = [ teams.xfce ]; 51 }; 52 - }
··· 3 stdenv, 4 fetchurl, 5 gettext, 6 + meson, 7 + ninja, 8 pkg-config, 9 libxfce4util, 10 xfce4-panel, 11 libxfce4ui, 12 + glib, 13 gtk3, 14 gitUpdater, 15 }: 16 17 + stdenv.mkDerivation (finalAttrs: { 18 pname = "xfce4-eyes-plugin"; 19 + version = "4.7.0"; 20 21 src = fetchurl { 22 + url = "mirror://xfce/src/panel-plugins/xfce4-eyes-plugin/${lib.versions.majorMinor finalAttrs.version}/xfce4-eyes-plugin-${finalAttrs.version}.tar.xz"; 23 + hash = "sha256-h/m5eMp1q7OqXtsTFetl75hlSmYsFGIYR93/6KpldK0="; 24 }; 25 26 + strictDeps = true; 27 + 28 nativeBuildInputs = [ 29 gettext 30 + meson 31 + ninja 32 pkg-config 33 ]; 34 ··· 36 libxfce4util 37 libxfce4ui 38 xfce4-panel 39 + glib 40 gtk3 41 ]; 42 43 passthru.updateScript = gitUpdater { 44 + url = "https://gitlab.xfce.org/panel-plugins/xfce4-eyes-plugin"; 45 + rev-prefix = "xfce4-eyes-plugin-"; 46 }; 47 48 + meta = { 49 homepage = "https://docs.xfce.org/panel-plugins/xfce4-eyes-plugin"; 50 description = "Rolling eyes (following mouse pointer) plugin for the Xfce panel"; 51 + license = lib.licenses.gpl2Plus; 52 + platforms = lib.platforms.linux; 53 + teams = [ lib.teams.xfce ]; 54 }; 55 + })