2003-11-06 15:24:19 +00:00
|
|
|
{ spellChecking ? true
|
2007-04-27 23:41:35 +01:00
|
|
|
, stdenv, fetchurl, pkgconfig, gtk, gtkspell ? null
|
2006-05-07 22:58:31 +01:00
|
|
|
, perl, pcre, gmime, gettext
|
2003-11-06 15:24:19 +00:00
|
|
|
}:
|
|
|
|
|
2008-06-17 15:19:59 +01:00
|
|
|
assert spellChecking -> gtkspell != null;
|
2003-11-06 15:24:19 +00:00
|
|
|
|
2004-03-29 18:23:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2008-08-04 19:00:49 +01:00
|
|
|
name = "pan-0.133";
|
2003-11-06 16:28:57 +00:00
|
|
|
|
2003-11-06 15:24:19 +00:00
|
|
|
src = fetchurl {
|
2008-08-04 19:00:49 +01:00
|
|
|
url = http://pan.rebelbase.com/download/releases/0.133/source/pan-0.133.tar.bz2;
|
|
|
|
sha1 = "a0bd98ea1ba174800896611e3305a6b6d8dbde2f";
|
2003-11-06 15:24:19 +00:00
|
|
|
};
|
2003-11-06 16:28:57 +00:00
|
|
|
|
2008-06-17 15:19:59 +01:00
|
|
|
buildInputs = [pkgconfig gtk perl pcre gmime gettext]
|
|
|
|
++ stdenv.lib.optional spellChecking gtkspell;
|
2006-10-11 17:45:55 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A GTK+-based Usenet newsreader good at both text and binaries";
|
2008-06-17 15:19:59 +01:00
|
|
|
homepage = http://pan.rebelbase.com/;
|
2006-10-11 17:45:55 +01:00
|
|
|
};
|
2003-11-06 15:24:19 +00:00
|
|
|
}
|