gnome2.gtkhtml4: init at 4.10.0

+17
+2
pkgs/desktops/gnome-2/default.nix
··· 66 67 gtkhtml = callPackage ./platform/gtkhtml { }; 68 69 # Required for nautilus 70 inherit (libunique); 71
··· 66 67 gtkhtml = callPackage ./platform/gtkhtml { }; 68 69 + gtkhtml4 = callPackage ./platform/gtkhtml/4.x.nix { }; 70 + 71 # Required for nautilus 72 inherit (libunique); 73
+15
pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix
···
··· 1 + { stdenv, fetchurl, pkgconfig, gtk3, intltool, 2 + GConf, enchant, isocodes, gnome_icon_theme, gsettings_desktop_schemas }: 3 + 4 + stdenv.mkDerivation rec { 5 + version = "4.10.0"; 6 + name = "gtkhtml-${version}"; 7 + 8 + src = fetchurl { 9 + url = "mirror://gnome/sources/gtkhtml/4.10/${name}.tar.xz"; 10 + sha256 = "1hq6asgb5n9q3ryx2vngr4jyi8lg65lzpnlgrgcwayiczcj68fya"; 11 + }; 12 + 13 + propagatedBuildInputs = [ gsettings_desktop_schemas gtk3 gnome_icon_theme GConf ]; 14 + buildInputs = [pkgconfig intltool enchant isocodes ]; 15 + }