nixpkgs/pkgs/development/libraries/gtk-libs/2.12/glib/default.nix
Eelco Dolstra eca684a44b * Gnome 2.22.1.
* Moved some of the Gnome package Nix expressions into
  pkgs/desktops/gnome/default.nix - no need to have them in separate
  files.  This way the code is much shorter.  Still to be done for all
  the other Gnome packages.
* Glib 2.16.3.

svn path=/nixpkgs/branches/stdenv-updates/; revision=11855
2008-05-20 14:25:09 +00:00

18 lines
366 B
Nix

args: with args;
stdenv.mkDerivation {
name = "glib-2.16.3";
src = fetchurl {
url = mirror://gnome/sources/glib/2.16/glib-2.16.3.tar.bz2;
md5 = "195f9a803cc5279dbb39afdf985f44cb";
};
buildInputs = [pkgconfig gettext perl];
meta = {
description = "A C library providing non-GUI functionality";
homepage = http://www.gtk.org/;
};
}