xfce.xfce4-timer-plugin: 1.7.3 -> 1.8.0

https://gitlab.xfce.org/panel-plugins/xfce4-timer-plugin/-/compare/xfce4-timer-plugin-1.7.3...xfce4-timer-plugin-1.8.0

+17 -19
+17 -19
pkgs/desktops/xfce/panel-plugins/xfce4-timer-plugin/default.nix
··· 3 stdenv, 4 fetchurl, 5 gettext, 6 pkg-config, 7 libxfce4util, 8 xfce4-panel, 9 libxfce4ui, 10 glib, 11 gtk3, 12 - hicolor-icon-theme, 13 gitUpdater, 14 }: 15 16 - let 17 - category = "panel-plugins"; 18 - in 19 - 20 - stdenv.mkDerivation rec { 21 pname = "xfce4-timer-plugin"; 22 - version = "1.7.3"; 23 24 src = fetchurl { 25 - url = "mirror://xfce/src/${category}/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2"; 26 - sha256 = "sha256-rPTIYa+IYIuegCp2pLBYRr0wGJ4AhegmaAzBebbfTNM="; 27 }; 28 29 nativeBuildInputs = [ 30 gettext 31 pkg-config 32 ]; 33 ··· 37 xfce4-panel 38 glib 39 gtk3 40 - hicolor-icon-theme 41 ]; 42 43 - hardeningDisable = [ "format" ]; 44 - 45 passthru.updateScript = gitUpdater { 46 - url = "https://gitlab.xfce.org/panel-plugins/${pname}"; 47 - rev-prefix = "${pname}-"; 48 }; 49 50 - meta = with lib; { 51 homepage = "https://docs.xfce.org/panel-plugins/xfce4-timer-plugin"; 52 description = "Simple countdown and alarm plugin for the Xfce panel"; 53 - platforms = platforms.linux; 54 - license = licenses.gpl2Plus; 55 - teams = [ teams.xfce ]; 56 }; 57 - }
··· 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-timer-plugin"; 19 + version = "1.8.0"; 20 21 src = fetchurl { 22 + url = "mirror://xfce/src/panel-plugins/xfce4-timer-plugin/${lib.versions.majorMinor finalAttrs.version}/xfce4-timer-plugin-${finalAttrs.version}.tar.xz"; 23 + hash = "sha256-HTrDqixDRUAMAlZCd452Q6q0EEdiK6+c3AC7rHjon5k="; 24 }; 25 26 + strictDeps = true; 27 + 28 nativeBuildInputs = [ 29 gettext 30 + meson 31 + ninja 32 pkg-config 33 ]; 34 ··· 38 xfce4-panel 39 glib 40 gtk3 41 ]; 42 43 passthru.updateScript = gitUpdater { 44 + url = "https://gitlab.xfce.org/panel-plugins/xfce4-timer-plugin"; 45 + rev-prefix = "xfce4-timer-plugin-"; 46 }; 47 48 + meta = { 49 homepage = "https://docs.xfce.org/panel-plugins/xfce4-timer-plugin"; 50 description = "Simple countdown and alarm plugin for the Xfce panel"; 51 + platforms = lib.platforms.linux; 52 + license = lib.licenses.gpl2Plus; 53 + teams = [ lib.teams.xfce ]; 54 }; 55 + })