svn path=/nixpkgs/trunk/; revision=11461

This commit is contained in:
Marc Weber 2008-04-04 16:58:19 +00:00
parent b82c4debb8
commit 9e83312bd1
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,11 @@
args:
args.stdenv.mkDerivation {
name = "glib-2.14";
src = args.fetchurl {
url = http://ftp.acc.umu.se/pub/GNOME/sources/glib/2.14/glib-2.14.6.tar.bz2;
sha256 = "1fi4xb07d7bfnfi65snvbi6i5kzhr3kad8knbwklj47z779vppvq";
};
buildInputs =(with args; [pkgconfig gettext]);
}

View File

@ -2421,6 +2421,12 @@ let pkgs = rec {
inherit (xlibs) libXmu libXi;
};
# don't know wether this newer version breaks anything..
# not replacing the existing one.
glib214 = import ../development/libraries/glib {
inherit fetchurl stdenv pkgconfig gettext;
};
glibc = useFromStdenv "glibc"
(import ../development/libraries/glibc-2.7 {
inherit fetchurl stdenv kernelHeaders;