ac70cd728c
All code that was at xfce4-14 has been moved to xfce/*. Old expressions that aren't rewritten might be abandoned or broken. Additonally I've ported the xfce4-14 thunar expression to support thunarPlugins. We can now support this interface in the Xfce module again, although I'm not sure if we have any plugins packaged that support latest thunar.
15 lines
417 B
Nix
15 lines
417 B
Nix
{ mkXfceDerivation, exo, gtk3, libgudev, libxfce4ui, libxfce4util, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "thunar-volman";
|
|
version = "0.9.5";
|
|
|
|
buildInputs = [ exo gtk3 libgudev libxfce4ui libxfce4util xfconf ];
|
|
|
|
sha256 = "1qrlpn0q5g9psd41l6y80r3bvbg8jaic92m6r400zzwcvivf95z0";
|
|
|
|
meta = {
|
|
description = "Thunar extension for automatic management of removable drives and media";
|
|
};
|
|
}
|