gtksourceview needs gettext

svn path=/nixpkgs/trunk/; revision=17530
This commit is contained in:
Michael Raskin 2009-09-30 06:43:17 +00:00
parent 48db154dbb
commit 35bc5b52f7
2 changed files with 5 additions and 3 deletions

View file

@ -246,7 +246,8 @@ rec {
};
gtksourceview = import ./desktop/gtksourceview {
inherit (pkgs) stdenv fetchurl pkgconfig cairo perl intltool;
inherit (pkgs) stdenv fetchurl pkgconfig cairo perl intltool
gettext;
inherit (pkgs.gtkLibs) atk glib gtk pango;
libxml2 = pkgs.libxml2Python;
};

View file

@ -1,5 +1,5 @@
{stdenv, fetchurl, pkgconfig, atk, cairo, glib, gtk, pango,
libxml2, perl, intltool}:
libxml2, perl, intltool, gettext}:
stdenv.mkDerivation {
name = "gtksourceview-2.8.1";
@ -7,5 +7,6 @@ stdenv.mkDerivation {
url = mirror://gnome/sources/gtksourceview/2.8/gtksourceview-2.8.1.tar.bz2;
sha256 = "02irdw8sz374d3k51sx21hm7vmpkcwrhmnpp3v6afa2jcwi84zp6";
};
buildInputs = [pkgconfig atk cairo glib gtk pango libxml2 perl intltool];
buildInputs = [pkgconfig atk cairo glib gtk pango libxml2 perl intltool
gettext];
}