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