nixpkgs/pkgs/desktops/xfce/core/thunar.nix
2013-02-09 18:38:26 +01:00

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 ];
};
}