mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Fixed gtkhtml by adding intltool as buildinput
svn path=/nixpkgs/branches/stdenv-updates/; revision=15081
This commit is contained in:
parent
2375e23417
commit
f8cd5d94f8
2 changed files with 3 additions and 3 deletions
|
@ -162,7 +162,7 @@ rec {
|
|||
};
|
||||
|
||||
gtkhtml = import ./gtkhtml.nix {
|
||||
inherit fetchurl stdenv pkgconfig perl perlXMLParser libjpeg gettext;
|
||||
inherit fetchurl stdenv pkgconfig perl perlXMLParser libjpeg gettext intltool;
|
||||
inherit gtk atk gail libgnomeprint libgnomeprintui libgnomeui libglade gnomeicontheme;
|
||||
input = desktop.gtkhtml;
|
||||
};
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig, atk, gail, gtk
|
||||
, libgnomeprint, libgnomeprintui, libgnomeui, libglade, gnomeicontheme
|
||||
, libjpeg, gettext
|
||||
, libjpeg, gettext, intltool
|
||||
}:
|
||||
|
||||
# TODO build complains about missing libsoup and soup. Optional dependency?
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
|||
perl perlXMLParser pkgconfig libjpeg
|
||||
atk gail gtk
|
||||
libglade libgnomeprint libgnomeprintui libgnomeui
|
||||
gnomeicontheme gettext
|
||||
gnomeicontheme gettext intltool
|
||||
];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue