nixpkgs/pkgs/desktops/gnome-2.28/platform/gtkhtml/default.nix
Lluís Batlle i Rossell 029cd0a213 Adding gtkhtml, another program needed for gnucash to build.
I thought gtkhtml was not needed, and in my previous commit I removed it as a gnucash dependency.


svn path=/nixpkgs/trunk/; revision=19639
2010-01-24 22:07:53 +00:00

14 lines
391 B
Nix

{ stdenv, fetchurl, pkgconfig, gtk, intltool,
GConf, enchant, isocodes, gnome_icon_theme }:
stdenv.mkDerivation rec {
name = "gtkhtml-3.29.5";
src = fetchurl {
url = "mirror://gnome/sources/gtkhtml/3.29/${name}.tar.bz2";
sha256 = "0abd91isqbriq9nclq14275v2xd0r9vrr3sxhxwxxp02m8gskwvd";
};
buildInputs = [pkgconfig gtk intltool GConf enchant isocodes gnome_icon_theme ];
}