summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/gtkhtml/4.x.nix
blob: 33c2abef0fab70fd895e33cd219b8ce3c44e56a5 (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";
  pname = "gtkhtml";

  src = fetchurl {
    url = "mirror://gnome/sources/gtkhtml/4.10/${pname}-${version}.tar.xz";
    sha256 = "1hq6asgb5n9q3ryx2vngr4jyi8lg65lzpnlgrgcwayiczcj68fya";
  };

  propagatedBuildInputs = [ gsettings-desktop-schemas gtk3 gnome_icon_theme GConf ];
  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ intltool enchant isocodes ];
}