summary refs log tree commit diff
path: root/pkgs/development/libraries/glib/2.28.x.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/glib/2.28.x.nix')
-rw-r--r--pkgs/development/libraries/glib/2.28.x.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/libraries/glib/2.28.x.nix b/pkgs/development/libraries/glib/2.28.x.nix
new file mode 100644
index 000000000000..bae405a24267
--- /dev/null
+++ b/pkgs/development/libraries/glib/2.28.x.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchurl, pkgconfig, gettext, perl, libiconv, zlib }:
+
+stdenv.mkDerivation rec {
+  name = "glib-2.28.8";
+
+  src = fetchurl {
+    url = "mirror://gnome/sources/glib/2.28/${name}.tar.bz2";
+    sha256 = "222f3055d6c413417b50901008c654865e5a311c73f0ae918b0a9978d1f9466f";
+  };
+
+  # configure script looks for d-bus but it is only needed for tests
+  buildInputs = [ pkgconfig gettext ]
+                ++ stdenv.lib.optional (!stdenv.isLinux) libiconv;
+  buildNativeInputs = [ perl ];
+
+  propagatedBuildInputs = [ zlib ];
+
+  # glib buildsystem fails to find python, thus hardcodes python2.4 in #!
+  postInstall = ''
+    rm -rvf $out/share/gtk-doc
+    sed -e 's@python2\.4@python@' -i $out/bin/gtester-report'';
+
+  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 = [stdenv.lib.maintainers.raskin];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}