gnome2.gtkhtml4: init at 4.10.0
This commit is contained in:
parent
97935829f6
commit
2aa8bc45d3
@ -66,6 +66,8 @@ let overridden = set // overrides; set = with overridden; {
|
|||||||
|
|
||||||
gtkhtml = callPackage ./platform/gtkhtml { };
|
gtkhtml = callPackage ./platform/gtkhtml { };
|
||||||
|
|
||||||
|
gtkhtml4 = callPackage ./platform/gtkhtml/4.x.nix { };
|
||||||
|
|
||||||
# Required for nautilus
|
# Required for nautilus
|
||||||
inherit (libunique);
|
inherit (libunique);
|
||||||
|
|
||||||
|
15
pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix
Normal file
15
pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, gtk3, intltool,
|
||||||
|
GConf, enchant, isocodes, gnome_icon_theme, gsettings_desktop_schemas }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "4.10.0";
|
||||||
|
name = "gtkhtml-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnome/sources/gtkhtml/4.10/${name}.tar.xz";
|
||||||
|
sha256 = "1hq6asgb5n9q3ryx2vngr4jyi8lg65lzpnlgrgcwayiczcj68fya";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ gsettings_desktop_schemas gtk3 gnome_icon_theme GConf ];
|
||||||
|
buildInputs = [pkgconfig intltool enchant isocodes ];
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user