e9f2dc8830
Improve thunar/thunarx so that thunar's plugin directory could be overriden using a `THUNARX_MODULE_DIR` environment variable so that plugins not built along with the `thunar` package could be installed as well. This could allow one to wrap `thunar` in a `thunar-with-plugins` package where plugins are declared instead of being found (a bit in the same fashion as gstreamer plugins).
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ stdenv, fetchurl, pkgconfig, intltool
|
|
, gtk, dbus_glib, libstartup_notification, libnotify, libexif, pcre, udev
|
|
, exo, libxfce4util, xfconf, xfce4panel
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
p_name = "thunar";
|
|
ver_maj = "1.6";
|
|
ver_min = "10";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/Thunar-${ver_maj}.${ver_min}.tar.bz2";
|
|
sha256 = "7e9d24067268900e5e44d3325e60a1a2b2f8f556ec238ec12574fbea15fdee8a";
|
|
};
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
patches = [ ./thunarx_plugins_directory.patch ];
|
|
|
|
buildInputs = [
|
|
pkgconfig intltool
|
|
gtk dbus_glib libstartup_notification libnotify libexif pcre udev
|
|
exo libxfce4util xfconf xfce4panel
|
|
];
|
|
# TODO: optionality?
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
|
|
|
|
meta = {
|
|
homepage = http://thunar.xfce.org/;
|
|
description = "Xfce file manager";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
};
|
|
}
|