summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.6/core/thunar.nix
blob: adbbd461c5ee924dc9a33165fdc6a774a1ad1369 (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
25
{ stdenv, fetchurl, pkgconfig, intltool, exo, gtk, libxfce4util
, dbus_glib, libstartup_notification, xfconf, hal, xfce4panel
, gamin }:

stdenv.mkDerivation rec {
  name = "thunar-1.0.2";
  
  src = fetchurl {
    url = http://www.xfce.org/archive/xfce/4.6.2/src/Thunar-1.0.2.tar.bz2;
    sha1 = "f7ae00c32402e4bc502aba15477b78e2c558c7c3";
  };

  buildInputs =
    [ pkgconfig intltool exo gtk libxfce4util
      dbus_glib libstartup_notification xfconf xfce4panel gamin
    ];

  propagatedBuildInputs = [ hal ];

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