Add gtkglext

svn path=/nixpkgs/trunk/; revision=17905
This commit is contained in:
Michael Raskin 2009-10-20 22:20:58 +00:00
parent be6b6b73f9
commit cfb6be6e31
2 changed files with 15 additions and 0 deletions

View File

@ -259,4 +259,9 @@ rec {
inherit (pkgs.gtkLibs) gtk; inherit (pkgs.gtkLibs) gtk;
inherit gnome_desktop libunique intltool GConf; inherit gnome_desktop libunique intltool GConf;
}; };
gtkglext = import ./platform/gtkglext {
inherit (pkgs) stdenv fetchurl mesa pkgconfig;
inherit (pkgs.gtkLibs) gtk;
};
} }

View File

@ -0,0 +1,10 @@
{stdenv, fetchurl, pkgconfig, gtk, mesa}:
stdenv.mkDerivation {
name = "gtkglext-1.0.6";
src = fetchurl {
url = mirror://gnome/sources/gtkglext/1.0/gtkglext-1.0.6.tar.bz2;
sha256 = "1a9kpw1jx6d0dyljgv6f8kj2xdmyvrkyfds879wxk8x6n60gpcdj";
};
buildInputs = [ pkgconfig gtk mesa ];
}