diff --git a/pkgs/applications/networking/newsreaders/pan/default.nix b/pkgs/applications/networking/newsreaders/pan/default.nix index 42788cfe1a5..34e24823e46 100644 --- a/pkgs/applications/networking/newsreaders/pan/default.nix +++ b/pkgs/applications/networking/newsreaders/pan/default.nix @@ -1,6 +1,7 @@ { spellChecking ? true , stdenv, fetchurl, pkgconfig, gtk2, gtkspell2 ? null , perl, pcre, gmime, gettext, intltool, itstool, libxml2, dbus-glib, libnotify +, makeWrapper, gnupg }: assert spellChecking -> gtkspell2 != null; @@ -15,10 +16,14 @@ stdenv.mkDerivation { sha256 = "0l07y75z8jxhbmfv28slw81gjncs7i89x7fq44zif7xhq5vy7yli"; }; - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ gtk2 perl gmime gettext intltool itstool libxml2 dbus-glib libnotify ] + nativeBuildInputs = [ pkgconfig makeWrapper ]; + buildInputs = [ gtk2 perl gmime gettext gnupg intltool itstool libxml2 dbus-glib libnotify ] ++ stdenv.lib.optional spellChecking gtkspell2; + postInstall = '' + wrapProgram $out/bin/pan --suffix PATH : ${gnupg}/bin + ''; + enableParallelBuilding = true; meta = {