xfce.thunar-vcs-plugin: init at 0.3.0
This commit is contained in:
@@ -43,6 +43,8 @@ makeScopeWithSplicing' {
|
||||
|
||||
thunar-media-tags-plugin = callPackage ./thunar-plugins/media-tags { };
|
||||
|
||||
thunar-vcs-plugin = callPackage ./thunar-plugins/vcs { };
|
||||
|
||||
tumbler = callPackage ./core/tumbler { };
|
||||
|
||||
xfce4-panel = callPackage ./core/xfce4-panel { };
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
lib,
|
||||
mkXfceDerivation,
|
||||
thunar,
|
||||
exo,
|
||||
libxfce4util,
|
||||
subversion,
|
||||
apr,
|
||||
aprutil,
|
||||
withSubversion ? false,
|
||||
}:
|
||||
mkXfceDerivation {
|
||||
category = "thunar-plugins";
|
||||
pname = "thunar-vcs-plugin";
|
||||
version = "0.3.0";
|
||||
odd-unstable = false;
|
||||
|
||||
sha256 = "sha256-e9t6lIsvaV/2AAL/7I4Pbcokvy7Lp2+D9sJefTZqB1g=";
|
||||
|
||||
buildInputs =
|
||||
[
|
||||
thunar
|
||||
exo
|
||||
libxfce4util
|
||||
]
|
||||
++ lib.optionals withSubversion [
|
||||
apr
|
||||
aprutil
|
||||
subversion
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Thunar plugin providing support for Subversion and Git";
|
||||
maintainers = with lib.maintainers; [ lordmzte ] ++ lib.teams.xfce.members;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user