summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/gvfs/default.nix
blob: 1eea518c4b7f9fe23a978a9618d40e4fbcc9e328 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, pkgconfig, dbus_libs, samba, libarchive, fuse, libgphoto2
, libcdio, libxml2, libtool, glib, intltool, gconf, libgnome_keyring, libsoup
, udev, avahi, libxslt, docbook_xsl }:

stdenv.mkDerivation rec {
  name = "gvfs-1.14.2";

  src = fetchurl {
    url = "mirror://gnome/sources/gvfs/1.14/${name}.tar.xz";
    sha256 = "1g4ghyf45jg2ajdkv2d972hbckyjh3d9jdrppai85pl9pk2dmfy3";
  };

  buildInputs =
    [ glib dbus_libs udev samba libarchive fuse libgphoto2 libcdio libxml2 gconf
      libgnome_keyring libsoup avahi libtool libxslt docbook_xsl
    ];

  nativeBuildInputs = [ pkgconfig intltool ];

  enableParallelBuilding = true;
}