summary refs log tree commit diff
path: root/pkgs/desktops/xfce
diff options
context:
space:
mode:
authorSergey Mironov <grrwlf@gmail.com>2013-11-12 15:37:49 +0400
committerVladimír Čunát <vcunat@gmail.com>2013-11-16 16:58:08 +0100
commitd8b0c942a1ec2101e0b74044aea01c9b281dce03 (patch)
tree1b52094227a134963249eed491c520dac82fff6a /pkgs/desktops/xfce
parent36a05c7b1583e4611fa824e1c05d94462dcbc3c2 (diff)
downloadnixlib-d8b0c942a1ec2101e0b74044aea01c9b281dce03.tar
nixlib-d8b0c942a1ec2101e0b74044aea01c9b281dce03.tar.gz
nixlib-d8b0c942a1ec2101e0b74044aea01c9b281dce03.tar.bz2
nixlib-d8b0c942a1ec2101e0b74044aea01c9b281dce03.tar.lz
nixlib-d8b0c942a1ec2101e0b74044aea01c9b281dce03.tar.xz
nixlib-d8b0c942a1ec2101e0b74044aea01c9b281dce03.tar.zst
nixlib-d8b0c942a1ec2101e0b74044aea01c9b281dce03.zip
xfce: enable tumbler the thumbnail manager (close #1206)
Diffstat (limited to 'pkgs/desktops/xfce')
-rw-r--r--pkgs/desktops/xfce/core/tumbler.nix18
1 files changed, 16 insertions, 2 deletions
diff --git a/pkgs/desktops/xfce/core/tumbler.nix b/pkgs/desktops/xfce/core/tumbler.nix
index 1e7c3c5127e7..06902792624e 100644
--- a/pkgs/desktops/xfce/core/tumbler.nix
+++ b/pkgs/desktops/xfce/core/tumbler.nix
@@ -1,4 +1,5 @@
-{ stdenv, fetchurl, pkgconfig, intltool, dbus_glib, gdk_pixbuf }:
+{ stdenv, fetchurl, pkgconfig, intltool, dbus_glib, gdk_pixbuf, curl, freetype,
+libgsf, poppler, bzip2 }:
 
 stdenv.mkDerivation rec {
   p_name  = "tumbler";
@@ -11,11 +12,24 @@ stdenv.mkDerivation rec {
   };
   name = "${p_name}-${ver_maj}.${ver_min}";
 
-  buildInputs = [ pkgconfig intltool dbus_glib gdk_pixbuf ];
+  buildInputs = [ pkgconfig intltool dbus_glib gdk_pixbuf curl freetype
+    poppler libgsf bzip2];
+
+  configureFlags = [
+    # Needs gst-tag
+    # "--enable-gstreamer-thumbnailer"
+
+    # Needs libffmpegthumbnailer
+    # "--enable-ffmpeg-thumbnailer"
+    
+    "--enable-odf-thumbnailer"
+    "--enable-poppler-thumbnailer"
+  ];
 
   meta = {
     homepage = http://git.xfce.org/xfce/tumbler/;
     description = "A D-Bus thumbnailer service";
+    platforms = stdenv.lib.platforms.linux;
     license = "GPLv2";
   };
 }