9abff7a85e
Please, comment on #296.
26 lines
746 B
Nix
26 lines
746 B
Nix
{ v, h, stdenv, fetchXfce, pkgconfig, intltool, exo, gtk, libxfce4util
|
|
, dbus_glib, libstartup_notification, libnotify, xfconf, xfce4panel, gamin, libexif, pcre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "Thunar-${v}";
|
|
src = fetchXfce.core name h;
|
|
|
|
buildInputs =
|
|
[ pkgconfig intltool exo gtk libxfce4util
|
|
dbus_glib libstartup_notification libnotify xfconf xfce4panel gamin libexif pcre
|
|
];
|
|
# TODO: gudev, optionality
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
|
|
|
|
meta = {
|
|
homepage = http://thunar.xfce.org/;
|
|
description = "Xfce file manager";
|
|
license = "GPLv2+";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
};
|
|
}
|