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
11 lines
461 B
Nix
11 lines
461 B
Nix
{stdenv, fetchurl, pkgconfig, libxml2, dbus_glib, shared_mime_info, libexif, gtk, gnome_desktop, libunique, intltool, GConf}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "nautilus-2.28.0";
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/nautilus/2.28/nautilus-2.28.0.tar.bz2;
|
|
sha256 = "0wmskjxf231r2vra22zy02561gh5q10pj3lhzya13dvlliyv4q9p";
|
|
};
|
|
buildInputs = [ pkgconfig libxml2 dbus_glib shared_mime_info libexif gtk gnome_desktop libunique intltool GConf ];
|
|
}
|