Merge pull request #127283 from ncfavier/thunar-media-tags
xfce.thunar-media-tags-plugin: init at 0.3.0
This commit is contained in:
commit
b8334f30a2
2 changed files with 38 additions and 0 deletions
|
@ -35,6 +35,8 @@ lib.makeScope pkgs.newScope (self: with self; {
|
|||
|
||||
thunar-dropbox-plugin = callPackage ./thunar-plugins/dropbox { };
|
||||
|
||||
thunar-media-tags-plugin = callPackage ./thunar-plugins/media-tags { };
|
||||
|
||||
tumbler = callPackage ./core/tumbler { };
|
||||
|
||||
xfce4-panel = callPackage ./core/xfce4-panel { };
|
||||
|
|
36
pkgs/desktops/xfce/thunar-plugins/media-tags/default.nix
Normal file
36
pkgs/desktops/xfce/thunar-plugins/media-tags/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ lib
|
||||
, mkXfceDerivation
|
||||
, gtk3
|
||||
, thunar
|
||||
, exo
|
||||
, libxfce4util
|
||||
, intltool
|
||||
, gettext
|
||||
, taglib
|
||||
}:
|
||||
|
||||
mkXfceDerivation {
|
||||
category = "thunar-plugins";
|
||||
pname = "thunar-media-tags-plugin";
|
||||
version = "0.3.0";
|
||||
|
||||
sha256 = "sha256-jtgcHH5U5GOvzDVUwPEreMtTdk5DT6sXvFPDbzbF684=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
intltool
|
||||
gettext
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
thunar
|
||||
exo
|
||||
gtk3
|
||||
libxfce4util
|
||||
taglib
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Thunar plugin providing tagging and renaming features for media files";
|
||||
maintainers = with maintainers; [ ncfavier ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue