30bf1fcb29
(through udisks) in Xfce. Libgdu is part of gnome-disk-utility, which would pull in lots of Gnome dependencies, so some hackery is necessary to build only the useful part. svn path=/nixpkgs/trunk/; revision=29054
19 lines
538 B
Nix
19 lines
538 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, dbus, intltool, udev, libgdu }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gvfs-1.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gvfs/1.8/${name}.tar.bz2";
|
|
sha256 = "0895ac8f6d416e1b15433b6b6b68eb119c6e8b04fdb66db665d684355ef89345";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig glib dbus.libs intltool udev libgdu ];
|
|
|
|
meta = {
|
|
description = "Virtual Filesystem support library (for Xfce)";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
};
|
|
}
|