* Pan 0.128.

svn path=/nixpkgs/trunk/; revision=8622
This commit is contained in:
Eelco Dolstra 2007-04-27 22:41:35 +00:00
parent 0caae36936
commit ac80e8229b
2 changed files with 6 additions and 9 deletions

View File

@ -1,23 +1,21 @@
{ spellChecking ? true { spellChecking ? true
, stdenv, fetchurl, pkgconfig, gtk, gtkspell ? null, gnet , stdenv, fetchurl, pkgconfig, gtk, gtkspell ? null
, perl, pcre, gmime, gettext , perl, pcre, gmime, gettext
}: }:
assert pkgconfig != null && gtk != null && gnet != null
&& perl != null && pcre != null;
assert spellChecking -> gtkspell != null /* !!! && gtk == gtkspell.gtk */; assert spellChecking -> gtkspell != null /* !!! && gtk == gtkspell.gtk */;
# !!! assert gtk.glib == gnet.glib; # !!! assert gtk.glib == gnet.glib;
stdenv.mkDerivation { stdenv.mkDerivation {
name = "pan-0.106"; name = "pan-0.128";
src = fetchurl { src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/pan-0.106.tar.bz2; url = http://pan.rebelbase.com/download/releases/0.128/source/pan-0.128.tar.bz2;
md5 = "34cdc4b7606f09517f015a2c624044c9"; sha1 = "3fca3cbd3d3ae3cc507d2b0a06a0fe03c993abe6";
}; };
buildInputs = [ buildInputs = [
pkgconfig gtk gnet perl pcre gmime gettext pkgconfig gtk perl pcre gmime gettext
(if spellChecking then gtkspell else null) (if spellChecking then gtkspell else null)
]; ];

View File

@ -2777,8 +2777,7 @@ rec {
}; };
pan = import ../applications/networking/newsreaders/pan { pan = import ../applications/networking/newsreaders/pan {
inherit fetchurl stdenv pkgconfig gnet perl inherit fetchurl stdenv pkgconfig perl pcre gmime gettext;
pcre gmime gettext;
inherit (gtkLibs) gtk; inherit (gtkLibs) gtk;
spellChecking = false; spellChecking = false;
}; };