diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-10-01 19:59:55 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-10-01 22:16:22 +0300 |
commit | 64df08f0cfac8f7a329002afa3461fd62a4b229c (patch) | |
tree | 019909423138ceb49cdd86f1af48d366503db68f /gnu/packages/search.scm | |
parent | b83ad3ace56c65a367e8f58c7b78323cf251b94b (diff) | |
parent | 0ef1c223071869488c35b72b7407234c11425589 (diff) | |
download | patches-64df08f0cfac8f7a329002afa3461fd62a4b229c.tar patches-64df08f0cfac8f7a329002afa3461fd62a4b229c.tar.gz |
Merge remote-tracking branch 'origin/master' into core-updates
Diffstat (limited to 'gnu/packages/search.scm')
-rw-r--r-- | gnu/packages/search.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm index cc8c0630bb..62da3be0fd 100644 --- a/gnu/packages/search.scm +++ b/gnu/packages/search.scm @@ -264,15 +264,17 @@ conflict with slocate compatibility.") ;; building: xpdf, catdoc, MP3::Tag, Spreadsheet::ParseExcel, ;; HTML::Entities. (inputs - `(("libxml" ,libxml2) - ("zlib" ,zlib) - ("perl" ,perl) + `(("perl" ,perl) ("perl-uri" ,perl-uri) ("perl-html-parser" ,perl-html-parser) ("perl-html-tagset" ,perl-html-tagset) ("perl-mime-types" ,perl-mime-types))) (arguments - `(#:phases (modify-phases %standard-phases + `(;; XXX: This fails to build with zlib (API mismatch) and tests fail + ;; with libxml2, so disable both. + #:configure-flags (list (string-append "--without-zlib") + (string-append "--without-libxml2")) + #:phases (modify-phases %standard-phases (add-after 'install 'wrap-programs (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out"))) |