summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pango
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2010-10-05 17:30:17 +0000
committerAndres Löh <mail@andres-loeh.de>2010-10-05 17:30:17 +0000
commit657572abc8b6b36b1de9c0906f3e7f7c1e8cbec0 (patch)
treee8c9a470827059fbb9a36c0bf0ce0bc361ef16db /pkgs/development/libraries/haskell/pango
parent01955a51a20c627a4173978363d51fcda2ca6b15 (diff)
Added new (modular) gtk2hs and threadscope.
svn path=/nixpkgs/trunk/; revision=24086
Diffstat (limited to 'pkgs/development/libraries/haskell/pango')
-rw-r--r--pkgs/development/libraries/haskell/pango/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/pango/default.nix b/pkgs/development/libraries/haskell/pango/default.nix
new file mode 100644
index 0000000000000..2a8ba497f3f97
--- /dev/null
+++ b/pkgs/development/libraries/haskell/pango/default.nix
@@ -0,0 +1,14 @@
+{cabal, cairo, glib, mtl, gtk2hsBuildtools, pkgconfig, pango, glibc}:
+
+cabal.mkDerivation (self : {
+  pname = "pango";
+  version = "0.11.2";
+  sha256 = "fb7f5dc303d3d49a330aaa3acf29560f78746edb9c67f6191756baa1b08fb504";
+  extraBuildInputs = [pkgconfig gtk2hsBuildtools pango glibc];
+  propagatedBuildInputs = [cairo glib mtl];
+  meta = {
+    description = "Binding to the Pango text rendering engine";
+    license = "LGPLv2+";
+    maintainers = [self.stdenv.lib.maintainers.andres];
+  };
+})