e60fe8673b
gnome28 was a mix of packages from various releases, so do not mention 2.28 in the attribute name. svn path=/nixpkgs/trunk/; revision=29721
14 lines
552 B
Nix
14 lines
552 B
Nix
{ stdenv, fetchurl, pkgconfig, dbus, samba, hal, libarchive, fuse, libgphoto2
|
|
, cdparanoia, libxml2, libtool, glib, intltool, GConf, gnome_keyring, libsoup}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gvfs-1.4.0";
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/gvfs/1.4/gvfs-1.4.0.tar.bz2;
|
|
sha256 = "1fzqq21888c1w357kcy8m12393wd6jjlk4pg118npn11m4gbb13s";
|
|
};
|
|
builder = ./builder.sh;
|
|
buildInputs = [ pkgconfig dbus.libs samba hal libarchive fuse libgphoto2 cdparanoia libxml2 libtool
|
|
glib intltool GConf gnome_keyring libsoup ];
|
|
}
|