svn path=/nixpkgs/trunk/; revision=11461
This commit is contained in:
parent
b82c4debb8
commit
9e83312bd1
11
pkgs/development/libraries/glib/default.nix
Normal file
11
pkgs/development/libraries/glib/default.nix
Normal 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]);
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user