summary refs log tree commit diff
path: root/pkgs/applications/networking/newsreaders/pan
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-05-07 21:58:31 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-05-07 21:58:31 +0000
commit405d3143959a78dd4ae188630a4385bdb8262877 (patch)
treeea283ea008e7e406c33a92473b16fa3bf5f2b6ee /pkgs/applications/networking/newsreaders/pan
parentc63f4278c777204b5ce65077e133809c9e302916 (diff)
* Pan 0.96.
svn path=/nixpkgs/trunk/; revision=5280
Diffstat (limited to 'pkgs/applications/networking/newsreaders/pan')
-rw-r--r--pkgs/applications/networking/newsreaders/pan/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/networking/newsreaders/pan/default.nix b/pkgs/applications/networking/newsreaders/pan/default.nix
index eed44a9573cb6..5bf61f763fdcc 100644
--- a/pkgs/applications/networking/newsreaders/pan/default.nix
+++ b/pkgs/applications/networking/newsreaders/pan/default.nix
@@ -1,23 +1,23 @@
 { spellChecking ? true
 , stdenv, fetchurl, pkgconfig, gtk, gtkspell ? null, gnet
-, libxml2, perl, pcre
+, perl, pcre, gmime, gettext
 }:
 
 assert pkgconfig != null && gtk != null && gnet != null
-  && libxml2 != null && perl != null && pcre != null;
+  && perl != null && pcre != null;
 assert spellChecking -> gtkspell != null /* !!! && gtk == gtkspell.gtk */;
 # !!! assert gtk.glib == gnet.glib;
 
 stdenv.mkDerivation {
-  name = "pan-0.14.2.91";
+  name = "pan-0.96";
 
   src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/pan-0.14.2.91.tar.bz2;
-    md5 = "4770d899a1c1ba968ce96bc5aeb07b62";
+    url = http://pan.rebelbase.com/download/releases/0.96/SOURCE/pan-0.96.tar.bz2;
+    md5 = "b4e355553cd502add3e599d1e867da9e";
   };
 
   buildInputs = [
-    pkgconfig gtk gnet libxml2 perl pcre
+    pkgconfig gtk gnet perl pcre gmime gettext
     (if spellChecking then gtkspell else null)
   ];