summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/tumbler.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/xfce/core/tumbler.nix')
-rw-r--r--pkgs/desktops/xfce/core/tumbler.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce/core/tumbler.nix b/pkgs/desktops/xfce/core/tumbler.nix
new file mode 100644
index 00000000000..c9bcb9aeb9a
--- /dev/null
+++ b/pkgs/desktops/xfce/core/tumbler.nix
@@ -0,0 +1,14 @@
+{ v, h, stdenv, fetchXfce, pkgconfig, intltool, dbus_glib, gdk_pixbuf }:
+
+stdenv.mkDerivation rec {
+  name = "tumbler-${v}";
+  src = fetchXfce.core name h;
+
+  buildInputs = [ pkgconfig intltool dbus_glib gdk_pixbuf ];
+
+  meta = {
+    homepage = http://git.xfce.org/xfce/tumbler/;
+    description = "A D-Bus thumbnailer service";
+    license = "GPLv2";
+  };
+}