lol

xfce.xfce4-dict: 0.8.8 -> 0.8.9

https://gitlab.xfce.org/apps/xfce4-dict/-/compare/xfce4-dict-0.8.8...xfce4-dict-0.8.9

Bobby Rong 40f2099d d89fc19e

+34 -8
+34 -8
pkgs/desktops/xfce/applications/xfce4-dict/default.nix
··· 1 1 { 2 + stdenv, 2 3 lib, 3 - mkXfceDerivation, 4 + fetchFromGitLab, 5 + meson, 6 + ninja, 7 + pkg-config, 8 + wrapGAppsHook3, 4 9 glib, 5 10 gtk3, 6 11 libxfce4ui, 7 12 libxfce4util, 8 13 xfce4-panel, 14 + gitUpdater, 9 15 }: 10 16 11 - mkXfceDerivation { 12 - category = "apps"; 17 + stdenv.mkDerivation (finalAttrs: { 13 18 pname = "xfce4-dict"; 14 - version = "0.8.8"; 19 + version = "0.8.9"; 15 20 16 - sha256 = "sha256-nVpEeOSSfXCIxuIj0qie+oi8FVRiVUmDMPZZwIZ9L/k="; 21 + src = fetchFromGitLab { 22 + domain = "gitlab.xfce.org"; 23 + owner = "apps"; 24 + repo = "xfce4-dict"; 25 + tag = "xfce4-dict-${finalAttrs.version}"; 26 + hash = "sha256-cl5TnPlgGUZ4esdkptyXO+LagdAboSzR4m0cCre9RHA="; 27 + }; 28 + 29 + strictDeps = true; 30 + 31 + nativeBuildInputs = [ 32 + glib # glib-compile-resources 33 + meson 34 + ninja 35 + pkg-config 36 + wrapGAppsHook3 37 + ]; 17 38 18 39 buildInputs = [ 19 40 glib ··· 23 44 xfce4-panel 24 45 ]; 25 46 26 - meta = with lib; { 47 + passthru.updateScript = gitUpdater { rev-prefix = "xfce4-dict-"; }; 48 + 49 + meta = { 27 50 description = "Dictionary Client for the Xfce desktop environment"; 51 + homepage = "https://gitlab.xfce.org/apps/xfce4-dict"; 52 + license = lib.licenses.gpl2Plus; 28 53 mainProgram = "xfce4-dict"; 29 - teams = [ teams.xfce ]; 54 + teams = [ lib.teams.xfce ]; 55 + platforms = lib.platforms.linux; 30 56 }; 31 - } 57 + })