summary refs log tree commit diff
path: root/pkgs/desktops/xfce/core/thunar-volman.nix
blob: 92f4739b540ae30093082d768dc2d4f8bd75c0a0 (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
26
27
{ stdenv, fetchurl, pkgconfig, intltool, exo, gtk, libxfce4util, libxfce4ui
, xfconf, udev, libnotify }:

stdenv.mkDerivation rec {
  name = "thunar-volman-0.6.0";

  src = fetchurl {
    url = "http://archive.xfce.org/src/xfce/thunar-volman/0.6/${name}.tar.bz2";
    sha1 = "dcda936948623b342b290a78c294f71c038e832e";
  };

  buildInputs =
    [ pkgconfig intltool exo gtk udev libxfce4ui libxfce4util
      xfconf libnotify
    ];
  preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";

  enableParallelBuilding = true;

  meta = {
    homepage = http://thunar.xfce.org/;
    description = "Thunar extension for automatic management of removable drives and media";
    license = "GPLv2+";
    platforms = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.eelco ];
  };
}