mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-16 09:02:36 +00:00
parent
8265979114
commit
96f0d4e98c
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue