From 405d3143959a78dd4ae188630a4385bdb8262877 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 7 May 2006 21:58:31 +0000 Subject: * Pan 0.96. svn path=/nixpkgs/trunk/; revision=5280 --- pkgs/applications/networking/newsreaders/pan/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'pkgs/applications/networking/newsreaders/pan') 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) ]; -- cgit 1.4.1