Fix gtkglext build

svn path=/nixpkgs/trunk/; revision=17906
This commit is contained in:
Michael Raskin 2009-10-21 07:02:04 +00:00
parent cfb6be6e31
commit bed14405fb
2 changed files with 4 additions and 3 deletions

View file

@ -262,6 +262,6 @@ rec {
gtkglext = import ./platform/gtkglext {
inherit (pkgs) stdenv fetchurl mesa pkgconfig;
inherit (pkgs.gtkLibs) gtk;
inherit (pkgs.gtkLibs) gtk pango;
};
}

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, pkgconfig, gtk, mesa}:
{stdenv, fetchurl, pkgconfig, gtk, mesa, pango}:
stdenv.mkDerivation {
name = "gtkglext-1.0.6";
@ -6,5 +6,6 @@ stdenv.mkDerivation {
url = mirror://gnome/sources/gtkglext/1.0/gtkglext-1.0.6.tar.bz2;
sha256 = "1a9kpw1jx6d0dyljgv6f8kj2xdmyvrkyfds879wxk8x6n60gpcdj";
};
buildInputs = [ pkgconfig gtk mesa ];
NIX_LDFLAGS="-lpango-1.0 -lpangox-1.0";
buildInputs = [ pkgconfig gtk mesa pango ];
}