eca684a44b
* 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
18 lines
366 B
Nix
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/;
|
|
};
|
|
}
|