summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.8/core/thunar.nix
blob: c9ab76f2920c24a9d9b99859e75033e41fc6298f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, pkgconfig, intltool, exo, gtk, libxfce4util, libxfce4ui
, dbus_glib, libstartup_notification, xfconf, xfce4panel, udev, libnotify }:

stdenv.mkDerivation rec {
  name = "thunar-1.2.2";
  
  src = fetchurl {
    url = "http://archive.xfce.org/src/xfce/thunar/1.2/Thunar-1.2.2.tar.bz2";
    sha1 = "314e3d53ec7be1ea578da4d842ecc8dc5958b1bd";
  };

  buildInputs =
    [ pkgconfig intltool gtk exo libxfce4util libxfce4ui
      dbus_glib libstartup_notification xfconf xfce4panel udev libnotify
    ];

  enableParallelBuilding = true;

  meta = {
    homepage = http://thunar.xfce.org/;
    description = "Xfce file manager";
    license = "GPLv2+";
  };
}