nixpkgs/pkgs/desktops/xfce-4.8/core/thunar-volman.nix
Eelco Dolstra d80391b7df * Add Xfce 4.8 to the channel.
svn path=/nixpkgs/trunk/; revision=29050
2011-09-05 23:30:26 +00:00

27 lines
741 B
Nix

{ 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
];
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 ];
};
}