mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
d4d7931a62
svn path=/nixpkgs/branches/stdenv-updates/; revision=31678
51 lines
1.6 KiB
Nix
51 lines
1.6 KiB
Nix
{ stdenv, fetchurl, pkgconfig, gettext, perl, libiconv, zlib, libffi
|
|
, python }:
|
|
|
|
# TODO:
|
|
# * Add gio-module-fam
|
|
# Problem: cyclic dependency on gamin
|
|
# Possible solution: build as a standalone module, set env. vars
|
|
# * Make it build without python
|
|
# Problem: an example (test?) program needs it.
|
|
# Possible solution: disable compilation of this example somehow
|
|
# Reminder: add 'sed -e 's@python2\.[0-9]@python@' -i
|
|
# $out/bin/gtester-report' to postInstall if this is solved
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "glib-2.30.2";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/glib/2.30/glib-2.30.2.tar.xz;
|
|
sha256 = "10lfzxwc45lh5vfnd33l4m9z1mf3arpwdd8jz94dn79j6diixsgh";
|
|
};
|
|
|
|
# configure script looks for d-bus but it is only needed for tests
|
|
buildInputs = stdenv.lib.optional (!stdenv.isLinux) libiconv;
|
|
buildNativeInputs = [ perl pkgconfig gettext python ];
|
|
|
|
propagatedBuildInputs = [ zlib libffi ];
|
|
|
|
passthru.gioModuleDir = "lib/gio/modules";
|
|
|
|
# glib buildsystem fails to find python, thus hardcodes python2.4 in #!
|
|
postInstall = ''rm -rvf $out/share/gtk-doc'';
|
|
|
|
meta = {
|
|
description = "GLib, a C library of programming buildings blocks";
|
|
|
|
longDescription = ''
|
|
GLib provides the core application building blocks for libraries
|
|
and applications written in C. It provides the core object
|
|
system used in GNOME, the main loop implementation, and a large
|
|
set of utility functions for strings and common data structures.
|
|
'';
|
|
|
|
homepage = http://www.gtk.org/;
|
|
|
|
license = "LGPLv2+";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin urkud];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|