summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4.6/core/thunar.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/xfce-4.6/core/thunar.nix')
-rw-r--r--pkgs/desktops/xfce-4.6/core/thunar.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce-4.6/core/thunar.nix b/pkgs/desktops/xfce-4.6/core/thunar.nix
new file mode 100644
index 000000000000..adbbd461c5ee
--- /dev/null
+++ b/pkgs/desktops/xfce-4.6/core/thunar.nix
@@ -0,0 +1,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+";
+  };
+}