nixpkgs/pkgs/applications/networking/newsreaders/pan/default.nix
Eelco Dolstra e9aa891e4a * Pan 0.132.
svn path=/nixpkgs/trunk/; revision=9079
2007-08-09 13:38:19 +00:00

28 lines
677 B
Nix

{ spellChecking ? true
, stdenv, fetchurl, pkgconfig, gtk, gtkspell ? null
, perl, pcre, gmime, gettext
}:
assert spellChecking -> gtkspell != null /* !!! && gtk == gtkspell.gtk */;
# !!! assert gtk.glib == gnet.glib;
stdenv.mkDerivation {
name = "pan-0.132";
src = fetchurl {
url = http://pan.rebelbase.com/download/releases/0.132/source/pan-0.132.tar.bz2;
sha1 = "dc0bf586145b9d617039f49101874fbc76a9dc18";
};
buildInputs = [
pkgconfig gtk perl pcre gmime gettext
(if spellChecking then gtkspell else null)
];
inherit spellChecking stdenv;
meta = {
description = "A GTK+-based Usenet newsreader good at both text and binaries";
};
}