7736d51d6d
svn path=/nixpkgs/branches/stdenv-updates/; revision=11806
24 lines
582 B
Nix
24 lines
582 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gtk+-2.12.9";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/gtk+/2.12/gtk+-2.12.9.tar.bz2;
|
|
md5 = "33499772fdc3bea569c6d5673e5831b4";
|
|
};
|
|
|
|
buildInputs = [pkgconfig perl];
|
|
|
|
propagatedBuildInputs = [
|
|
x11 glib atk pango libtiff libjpeg libpng cairo libXrandr
|
|
] ++ stdenv.lib.optional xineramaSupport libXinerama;
|
|
|
|
passthru = { inherit libtiff libjpeg libpng; };
|
|
|
|
meta = {
|
|
description = "A multi-platform toolkit for creating graphical user interfaces";
|
|
homepage = http://www.gtk.org/;
|
|
};
|
|
}
|