summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2.28/platform/gtkhtml/default.nix
blob: a6a99c35310d8ac285d261ae3c195120b7fd6272 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv, fetchurl, pkgconfig, gtk, intltool,
GConf, enchant, isocodes, gnome_icon_theme }:

stdenv.mkDerivation rec {
  name = "gtkhtml-3.29.92.1";

  src = fetchurl {
    url = "mirror://gnome/sources/gtkhtml/3.29/${name}.tar.bz2";
    sha256 = "a34fe24af0f591db95010475c21a461985ef4479b2e91602bc745a9accfeef77";
  };

  buildInputs = [pkgconfig gtk intltool GConf enchant isocodes gnome_icon_theme ];
}