about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-05-21 11:42:46 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-05-21 11:42:46 +0000
commit7f9e88507178af9a47665626eed6895d49334fd6 (patch)
treeb11500fbb3498823f50f709534e500634cf8d9b3 /pkgs/applications
parent90891496d8ac11658f9c8bf3560eaf42b2369527 (diff)
downloadnixlib-7f9e88507178af9a47665626eed6895d49334fd6.tar
nixlib-7f9e88507178af9a47665626eed6895d49334fd6.tar.gz
nixlib-7f9e88507178af9a47665626eed6895d49334fd6.tar.bz2
nixlib-7f9e88507178af9a47665626eed6895d49334fd6.tar.lz
nixlib-7f9e88507178af9a47665626eed6895d49334fd6.tar.xz
nixlib-7f9e88507178af9a47665626eed6895d49334fd6.tar.zst
nixlib-7f9e88507178af9a47665626eed6895d49334fd6.zip
* Fix building Pan with a recent Glib. Patch courtesy of Gentoo.
svn path=/nixpkgs/branches/stdenv-updates/; revision=11871
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/newsreaders/pan/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/applications/networking/newsreaders/pan/default.nix b/pkgs/applications/networking/newsreaders/pan/default.nix
index 83d5e1bf0083..a427e3550f8b 100644
--- a/pkgs/applications/networking/newsreaders/pan/default.nix
+++ b/pkgs/applications/networking/newsreaders/pan/default.nix
@@ -14,6 +14,14 @@ stdenv.mkDerivation {
     sha1 = "dc0bf586145b9d617039f49101874fbc76a9dc18";
   };
 
+  patches = [
+    # Patch to build Pan on recent glibs.
+    (fetchurl {
+      url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/net-nntp/pan/files/pan-0.132-glib-compat.patch?rev=1.1";
+      sha256 = "0bmgnc3l1pz763xns8057qbsjirc0njr8dn34fhy4ig9yk4kp9k7";
+    })
+  ];
+
   buildInputs = [
     pkgconfig gtk perl pcre gmime gettext
     (if spellChecking then gtkspell else null)