about summary refs log tree commit diff
path: root/pkgs/applications/networking/newsreaders
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2003-12-01 16:34:13 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2003-12-01 16:34:13 +0000
commit4e38179977af0c620e62a12b2327e2c1505f6870 (patch)
tree198b7928cb61138e21860a846e3448a22a358ad3 /pkgs/applications/networking/newsreaders
parent2dc967e6567e2fd33a1580300adca5ed60c5db5b (diff)
downloadnixlib-4e38179977af0c620e62a12b2327e2c1505f6870.tar
nixlib-4e38179977af0c620e62a12b2327e2c1505f6870.tar.gz
nixlib-4e38179977af0c620e62a12b2327e2c1505f6870.tar.bz2
nixlib-4e38179977af0c620e62a12b2327e2c1505f6870.tar.lz
nixlib-4e38179977af0c620e62a12b2327e2c1505f6870.tar.xz
nixlib-4e38179977af0c620e62a12b2327e2c1505f6870.tar.zst
nixlib-4e38179977af0c620e62a12b2327e2c1505f6870.zip
* Upgrade to Pan 0.14.2.90.
svn path=/nixpkgs/trunk/; revision=562
Diffstat (limited to 'pkgs/applications/networking/newsreaders')
-rwxr-xr-xpkgs/applications/networking/newsreaders/pan/builder.sh2
-rw-r--r--pkgs/applications/networking/newsreaders/pan/default.nix12
2 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/applications/networking/newsreaders/pan/builder.sh b/pkgs/applications/networking/newsreaders/pan/builder.sh
index b2f160e155dc..5fdd174fcd28 100755
--- a/pkgs/applications/networking/newsreaders/pan/builder.sh
+++ b/pkgs/applications/networking/newsreaders/pan/builder.sh
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-buildinputs="$pkgconfig $gtk $gtkspell $gnet $libxml2 $perl"
+buildinputs="$pkgconfig $gtk $gtkspell $gnet $libxml2 $perl $pcre"
 . $stdenv/setup || exit 1
 
 tar xvfj $src || exit 1
diff --git a/pkgs/applications/networking/newsreaders/pan/default.nix b/pkgs/applications/networking/newsreaders/pan/default.nix
index 26b7e6af2b52..af84ca04142d 100644
--- a/pkgs/applications/networking/newsreaders/pan/default.nix
+++ b/pkgs/applications/networking/newsreaders/pan/default.nix
@@ -1,20 +1,21 @@
 { spellChecking ? true
-, stdenv, fetchurl, pkgconfig, gtk, gtkspell ? null, gnet, libxml2, perl
+, stdenv, fetchurl, pkgconfig, gtk, gtkspell ? null, gnet
+, libxml2, perl, pcre
 }:
 
 assert !isNull pkgconfig && !isNull gtk && !isNull gnet
-  && !isNull libxml2 && !isNull perl;
+  && !isNull libxml2 && !isNull perl && !isNull pcre;
 assert spellChecking -> !isNull gtkspell && gtk == gtkspell.gtk;
 assert gtk.glib == gnet.glib;
 
 derivation {
-  name = "pan-0.14.2";
+  name = "pan-0.14.2.90";
   system = stdenv.system;
 
   builder = ./builder.sh;
   src = fetchurl {
-    url = http://pan.rebelbase.com/download/releases/0.14.2/SOURCE/pan-0.14.2.tar.bz2;
-    md5 = "ed3188e7059bb6d6c209ee5d46ac1852";
+    url = http://pan.rebelbase.com/download/releases/0.14.2.90/SOURCE/pan-0.14.2.90.tar.bz2;
+    md5 = "03e6d936254e775a94995ba261be23eb";
   };
 
   spellChecking = spellChecking;
@@ -26,4 +27,5 @@ derivation {
   gnet = gnet;
   libxml2 = libxml2;
   perl = perl;
+  pcre = pcre;
 }