summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/newsreaders/pan
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-08-04 18:00:49 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-08-04 18:00:49 +0000
commitd0aa54c8fa4686517d4de5a16536b0ada06d203c (patch)
tree4e0e9c47948972b963e33b45c4f685ab08cf1a60 /pkgs/applications/networking/newsreaders/pan
parentf6935cfd9897e62818c16a9b454ac6bfb13680a6 (diff)
* Pan 0.133.
svn path=/nixpkgs/trunk/; revision=12496
Diffstat (limited to 'pkgs/applications/networking/newsreaders/pan')
-rw-r--r--pkgs/applications/networking/newsreaders/pan/default.nix14
1 files changed, 3 insertions, 11 deletions
diff --git a/pkgs/applications/networking/newsreaders/pan/default.nix b/pkgs/applications/networking/newsreaders/pan/default.nix
index c91d64a2f4fe..67158bb69b0f 100644
--- a/pkgs/applications/networking/newsreaders/pan/default.nix
+++ b/pkgs/applications/networking/newsreaders/pan/default.nix
@@ -6,21 +6,13 @@
assert spellChecking -> gtkspell != null;
stdenv.mkDerivation {
- name = "pan-0.132";
+ name = "pan-0.133";
src = fetchurl {
- url = http://pan.rebelbase.com/download/releases/0.132/source/pan-0.132.tar.bz2;
- sha1 = "dc0bf586145b9d617039f49101874fbc76a9dc18";
+ url = http://pan.rebelbase.com/download/releases/0.133/source/pan-0.133.tar.bz2;
+ sha1 = "a0bd98ea1ba174800896611e3305a6b6d8dbde2f";
};
- patches = [
- # Patch to build Pan on recent glibs.
- (fetchurl {
- url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/net-nntp/pan/files/pan-0.132-glib-compat.patch?rev=1.1";
- sha256 = "0bmgnc3l1pz763xns8057qbsjirc0njr8dn34fhy4ig9yk4kp9k7";
- })
- ];
-
buildInputs = [pkgconfig gtk perl pcre gmime gettext]
++ stdenv.lib.optional spellChecking gtkspell;