aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/newsreaders
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-03-21 07:33:50 -0500
committerWill Dietz <w@wdtz.org>2018-03-21 07:50:40 -0500
commit8265979114071ebdc633f663a6bdb0deb0b0b8fc (patch)
treed13971dff12d5e72df2236865512701ce096eb86 /pkgs/applications/networking/newsreaders
parentf2feb99990775d52bad41bdeb341816b9cc82249 (diff)
pan: 0.139 -> 0.144
Diffstat (limited to 'pkgs/applications/networking/newsreaders')
-rw-r--r--pkgs/applications/networking/newsreaders/pan/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/newsreaders/pan/default.nix b/pkgs/applications/networking/newsreaders/pan/default.nix
index ad35c49c0146..42788cfe1a5b 100644
--- a/pkgs/applications/networking/newsreaders/pan/default.nix
+++ b/pkgs/applications/networking/newsreaders/pan/default.nix
@@ -1,22 +1,22 @@
{ spellChecking ? true
, stdenv, fetchurl, pkgconfig, gtk2, gtkspell2 ? null
-, perl, pcre, gmime, gettext, intltool, dbus-glib, libnotify
+, perl, pcre, gmime, gettext, intltool, itstool, libxml2, dbus-glib, libnotify
}:
assert spellChecking -> gtkspell2 != null;
-let version = "0.139"; in
+let version = "0.144"; in
stdenv.mkDerivation {
name = "pan-${version}";
src = fetchurl {
url = "http://pan.rebelbase.com/download/releases/${version}/source/pan-${version}.tar.bz2";
- sha256 = "1fab2i6ngqp66lhls0g7j8d1c1rk75afiqr3r1x2sn3zk47k4pxz";
+ sha256 = "0l07y75z8jxhbmfv28slw81gjncs7i89x7fq44zif7xhq5vy7yli";
};
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ gtk2 perl gmime gettext intltool dbus-glib libnotify ]
+ buildInputs = [ gtk2 perl gmime gettext intltool itstool libxml2 dbus-glib libnotify ]
++ stdenv.lib.optional spellChecking gtkspell2;
enableParallelBuilding = true;