xfce.xfce4-mpc-plugin: 0.5.5 -> 0.6.0

https://gitlab.xfce.org/panel-plugins/xfce4-mpc-plugin/-/compare/xfce4-mpc-plugin-0.5.5...xfce4-mpc-plugin-0.6.0

+17 -15
+17 -15
pkgs/desktops/xfce/panel-plugins/xfce4-mpc-plugin/default.nix
··· 3 stdenv, 4 fetchurl, 5 gettext, 6 pkg-config, 7 libxfce4util, 8 xfce4-panel, 9 libxfce4ui, ··· 12 gitUpdater, 13 }: 14 15 - let 16 - category = "panel-plugins"; 17 - in 18 - 19 - stdenv.mkDerivation rec { 20 pname = "xfce4-mpc-plugin"; 21 - version = "0.5.5"; 22 23 src = fetchurl { 24 - url = "mirror://xfce/src/${category}/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2"; 25 - sha256 = "sha256-TOfXdmeiY+6ZFsDKsqczsX471lcFzU7VzsPL3m5ymM8="; 26 }; 27 28 nativeBuildInputs = [ 29 gettext 30 pkg-config 31 ]; 32 33 buildInputs = [ 34 libxfce4util 35 libxfce4ui 36 xfce4-panel ··· 39 ]; 40 41 passthru.updateScript = gitUpdater { 42 - url = "https://gitlab.xfce.org/panel-plugins/${pname}"; 43 - rev-prefix = "${pname}-"; 44 }; 45 46 - meta = with lib; { 47 homepage = "https://docs.xfce.org/panel-plugins/xfce4-mpc-plugin"; 48 description = "MPD plugin for Xfce panel"; 49 - platforms = platforms.linux; 50 - license = licenses.bsd2; 51 - teams = [ teams.xfce ]; 52 }; 53 - }
··· 3 stdenv, 4 fetchurl, 5 gettext, 6 + meson, 7 + ninja, 8 pkg-config, 9 + libmpd, 10 libxfce4util, 11 xfce4-panel, 12 libxfce4ui, ··· 15 gitUpdater, 16 }: 17 18 + stdenv.mkDerivation (finalAttrs: { 19 pname = "xfce4-mpc-plugin"; 20 + version = "0.6.0"; 21 22 src = fetchurl { 23 + url = "mirror://xfce/src/panel-plugins/xfce4-mpc-plugin/${lib.versions.majorMinor finalAttrs.version}/xfce4-mpc-plugin-${finalAttrs.version}.tar.xz"; 24 + hash = "sha256-3uW8wFZrotyVucO0yt1eizuyeYpUoqjYZScIkV/kXVA="; 25 }; 26 27 nativeBuildInputs = [ 28 gettext 29 + meson 30 + ninja 31 pkg-config 32 ]; 33 34 buildInputs = [ 35 + libmpd 36 libxfce4util 37 libxfce4ui 38 xfce4-panel ··· 41 ]; 42 43 passthru.updateScript = gitUpdater { 44 + url = "https://gitlab.xfce.org/panel-plugins/xfce4-mpc-plugin"; 45 + rev-prefix = "xfce4-mpc-plugin-"; 46 }; 47 48 + meta = { 49 homepage = "https://docs.xfce.org/panel-plugins/xfce4-mpc-plugin"; 50 description = "MPD plugin for Xfce panel"; 51 + platforms = lib.platforms.linux; 52 + license = lib.licenses.bsd0; 53 + teams = [ lib.teams.xfce ]; 54 }; 55 + })