emacs-pdf-tools: Move packages to packageRequires

Move the Emacs packages to packageRequires so that they get installed.
This commit is contained in:
Svend Sorensen 2016-01-08 14:11:06 -08:00
parent cc51d6bc87
commit 5e775696d0

View file

@ -103,9 +103,10 @@ let
rev = "v${version}";
sha256 = "19sy49r3ijh36m7hl4vspw5c4i8pnfqdn4ldm2sqchxigkw56ayl";
};
buildInputs = with external; [ autoconf automake libpng zlib poppler pkgconfig ] ++ [ tablist let-alist ];
buildInputs = with external; [ autoconf automake libpng zlib poppler pkgconfig ];
preBuild = "make server/epdfinfo";
fileSpecs = [ "lisp/pdf-*.el" "server/epdfinfo" ];
packageRequires = [ tablist let-alist ];
meta = {
description = "Emacs support library for PDF files";
license = gpl3;