mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
gtksourceview needs gettext
svn path=/nixpkgs/trunk/; revision=17530
This commit is contained in:
parent
48db154dbb
commit
35bc5b52f7
@ -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;
|
||||
};
|
||||
|
@ -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];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user