2012-10-15 18:13:39 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, dbus, intltool, udev, libgdu, fuse
|
|
|
|
, libxml2, libxslt, docbook_xsl, libgphoto2, libtool }:
|
2011-09-05 22:36:37 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-02-09 18:38:26 +01:00
|
|
|
name = "gvfs-1.14.2";
|
2012-10-15 18:13:39 +02:00
|
|
|
|
2011-09-05 22:36:37 +02:00
|
|
|
src = fetchurl {
|
2012-10-15 18:13:39 +02:00
|
|
|
url = "mirror://gnome/sources/gvfs/1.14/${name}.tar.xz";
|
2013-02-09 18:38:26 +01:00
|
|
|
sha256 = "1g4ghyf45jg2ajdkv2d972hbckyjh3d9jdrppai85pl9pk2dmfy3";
|
2011-09-05 22:36:37 +02:00
|
|
|
};
|
|
|
|
|
2012-10-15 18:13:39 +02:00
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig glib dbus.libs intltool udev libgdu fuse libxml2 libxslt
|
|
|
|
docbook_xsl libgphoto2 libtool
|
|
|
|
];
|
2011-09-06 01:30:26 +02:00
|
|
|
|
|
|
|
meta = {
|
2011-09-06 01:30:42 +02:00
|
|
|
description = "Virtual Filesystem support library (for Xfce)";
|
2011-09-06 01:30:26 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2011-09-06 01:31:04 +02:00
|
|
|
};
|
2011-09-05 22:36:37 +02:00
|
|
|
}
|