summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix
blob: 49b8cc88f9de2880316058d40b7188275884a536 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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 ];
  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ intltool enchant isocodes ];
}