about summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk+/pango/default.fix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/gtk+/pango/default.fix')
-rw-r--r--pkgs/development/libraries/gtk+/pango/default.fix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gtk+/pango/default.fix b/pkgs/development/libraries/gtk+/pango/default.fix
new file mode 100644
index 0000000000000..d598d97f9c370
--- /dev/null
+++ b/pkgs/development/libraries/gtk+/pango/default.fix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl, pkgconfig, x11, glib, xft}:
+
+assert !isNull pkgconfig && !isNull x11 && !isNull glib && !isNull xft;
+assert x11.buildClientLibs;
+assert xft.x11 == x11;
+
+derivation {
+  name = "pango-1.2.5";
+  system = stdenv.system;
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = ftp://ftp.gtk.org/pub/gtk/v2.2/pango-1.2.5.tar.bz2;
+    md5 = "df00fe3e71cd297010f24f439b6c8ee6";
+  };
+  stdenv = stdenv;
+  pkgconfig = pkgconfig;
+  x11 = x11;
+  glib = glib;
+  xft = xft;
+}