mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
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
This commit is contained in:
parent
6f462d2c7c
commit
029cd0a213
@ -1,5 +1,5 @@
|
||||
{ fetchurl, stdenv, pkgconfig, libxml2, gconf, glib, gtk
|
||||
, libglade, libgnomeui, libgtkhtml, libgnomeprint, goffice, enchant
|
||||
, libglade, libgnomeui, libgtkhtml, gtkhtml, libgnomeprint, goffice, enchant
|
||||
, gettext, intltool, perl, guile, slibGuile, swig, isocodes, bzip2
|
||||
, makeWrapper }:
|
||||
|
||||
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig libxml2 gconf glib gtk
|
||||
libglade libgnomeui libgtkhtml libgnomeprint goffice enchant
|
||||
libglade libgnomeui libgtkhtml gtkhtml libgnomeprint goffice enchant
|
||||
gettext intltool perl guile slibGuile swig isocodes bzip2 makeWrapper
|
||||
];
|
||||
|
||||
|
@ -141,6 +141,13 @@ rec {
|
||||
|
||||
# What name should we use??
|
||||
gtkdoc = gtk_doc;
|
||||
|
||||
gtkhtml = import ./platform/gtkhtml {
|
||||
inherit (pkgs.gtkLibs) gtk;
|
||||
inherit (pkgs) fetchurl stdenv pkgconfig intltool enchant isocodes;
|
||||
inherit GConf gnome_icon_theme;
|
||||
};
|
||||
|
||||
|
||||
# Freedesktop library
|
||||
startup_notification = import ./platform/startup-notification {
|
||||
|
13
pkgs/desktops/gnome-2.28/platform/gtkhtml/default.nix
Normal file
13
pkgs/desktops/gnome-2.28/platform/gtkhtml/default.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{ 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 ];
|
||||
}
|
@ -6983,7 +6983,7 @@ let
|
||||
gnucash = import ../applications/office/gnucash {
|
||||
inherit fetchurl stdenv pkgconfig libxml2 goffice enchant
|
||||
gettext intltool perl guile slibGuile swig isocodes bzip2 makeWrapper;
|
||||
inherit (gnome) gtk glib libglade libgnomeui libgtkhtml
|
||||
inherit (gnome) gtk glib libglade libgnomeui libgtkhtml gtkhtml
|
||||
libgnomeprint;
|
||||
gconf = gnome.GConf;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user