about summary refs log tree commit diff
path: root/pkgs/desktops/xfce/thunar-plugins/media-tags/default.nix
blob: 570f0aeafcfe819d1e9834a54b665236e9c7efab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, mkXfceDerivation
, glib
, gtk3
, thunar
, libxfce4util
, intltool
, gettext
, taglib
}:

mkXfceDerivation {
  category = "thunar-plugins";
  pname = "thunar-media-tags-plugin";
  version = "0.4.0";
  odd-unstable = false;

  sha256 = "sha256-2WA7EtDmNl8XP0wK00iyQcSqV3mnfHNJZTKhBJ/YWPQ=";

  nativeBuildInputs = [
    intltool
    gettext
  ];

  buildInputs = [
    thunar
    glib
    gtk3
    libxfce4util
    taglib
  ];

  meta = with lib; {
    description = "Thunar plugin providing tagging and renaming features for media files";
    maintainers = with maintainers; [ ncfavier ] ++ teams.xfce.members;
  };
}