2014-02-17 04:09:18 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
2016-05-17 23:38:22 +00:00
|
|
|
;;; Copyright © 2015, 2016 Eric Bavier <bavier@member.fsf.org>
|
2017-01-24 17:03:32 +00:00
|
|
|
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
|
2024-04-01 20:01:13 +00:00
|
|
|
;;; Copyright © 2017, 2021, 2024 Ricardo Wurmus <rekado@elephly.net>
|
2021-01-02 19:59:45 +00:00
|
|
|
;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-04-04 06:13:30 +00:00
|
|
|
;;; Copyright © 2018 Adam Massmann <massmannak@gmail.com>
|
2021-01-01 18:10:34 +00:00
|
|
|
;;; Copyright © 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
2021-07-08 03:55:27 +00:00
|
|
|
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
|
2021-10-04 21:52:32 +00:00
|
|
|
;;; Copyright © 2021 Alexandr Vityazev <avityazev@posteo.org>
|
2022-01-24 14:47:49 +00:00
|
|
|
;;; Copyright © 2021, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
2022-02-14 16:16:35 +00:00
|
|
|
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
|
2022-06-24 12:16:46 +00:00
|
|
|
;;; Copyright © 2022 Arun Isaac <arunisaac@systemreboot.net>
|
2022-09-09 17:07:38 +00:00
|
|
|
;;; Copyright © 2022 Michael Rohleder <mike@rohleder.de>
|
2023-04-22 08:55:20 +00:00
|
|
|
;;; Copyright © 2023 Adam Faiz <adam.faiz@disroot.org>
|
2024-01-11 15:53:17 +00:00
|
|
|
;;; Copyright © 2023 David Pflug <david@pflug.io>
|
2014-02-17 04:09:18 +00:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages search)
|
2022-06-24 12:44:51 +00:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2014-02-17 04:09:18 +00:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2021-01-01 18:10:34 +00:00
|
|
|
#:use-module (guix git-download)
|
2022-08-06 05:37:52 +00:00
|
|
|
#:use-module (guix gexp)
|
2018-01-27 21:00:39 +00:00
|
|
|
#:use-module (guix utils)
|
2014-02-17 04:09:18 +00:00
|
|
|
#:use-module (guix build-system gnu)
|
2019-04-06 00:38:22 +00:00
|
|
|
#:use-module (guix build-system perl)
|
2018-04-04 06:13:30 +00:00
|
|
|
#:use-module (guix build-system python)
|
2021-10-04 21:52:32 +00:00
|
|
|
#:use-module (guix build-system meson)
|
2016-05-18 06:02:02 +00:00
|
|
|
#:use-module (gnu packages)
|
2023-04-22 08:55:20 +00:00
|
|
|
#:use-module (gnu packages adns)
|
2021-10-28 13:26:52 +00:00
|
|
|
#:use-module (gnu packages aspell)
|
2021-12-21 07:29:54 +00:00
|
|
|
#:use-module (gnu packages autotools)
|
2021-10-28 13:26:52 +00:00
|
|
|
#:use-module (gnu packages base)
|
2014-02-17 04:09:18 +00:00
|
|
|
#:use-module (gnu packages compression)
|
2015-03-27 21:16:41 +00:00
|
|
|
#:use-module (gnu packages check)
|
|
|
|
#:use-module (gnu packages databases)
|
2021-10-28 13:26:52 +00:00
|
|
|
#:use-module (gnu packages ebook)
|
2018-05-20 22:50:03 +00:00
|
|
|
#:use-module (gnu packages freedesktop)
|
gnu: recoll: Enable GUI and add inputs for common filters.
* gnu/packages/search.scm (recoll)[arguments]: Enable GUI; add build phase
'wrap-filters.
[inputs]: Replace python-pdftotext with poppler; add qtbase-5, unzip, gawk,
grep, groff, gzip, libiconv, perl, perl-image-exiftool, sed, and tar.
2021-10-29 11:40:04 +00:00
|
|
|
#:use-module (gnu packages gawk)
|
2021-12-21 07:29:54 +00:00
|
|
|
#:use-module (gnu packages gettext)
|
|
|
|
#:use-module (gnu packages glib)
|
2023-04-22 08:55:20 +00:00
|
|
|
#:use-module (gnu packages gnunet)
|
gnu: recoll: Enable GUI and add inputs for common filters.
* gnu/packages/search.scm (recoll)[arguments]: Enable GUI; add build phase
'wrap-filters.
[inputs]: Replace python-pdftotext with poppler; add qtbase-5, unzip, gawk,
grep, groff, gzip, libiconv, perl, perl-image-exiftool, sed, and tar.
2021-10-29 11:40:04 +00:00
|
|
|
#:use-module (gnu packages groff)
|
2021-12-21 07:29:54 +00:00
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
#:use-module (gnu packages icu4c)
|
2021-01-01 18:10:34 +00:00
|
|
|
#:use-module (gnu packages less)
|
2016-05-18 06:02:02 +00:00
|
|
|
#:use-module (gnu packages linux)
|
2021-01-01 18:10:34 +00:00
|
|
|
#:use-module (gnu packages pcre)
|
2016-05-18 06:02:02 +00:00
|
|
|
#:use-module (gnu packages perl)
|
2018-04-04 06:13:30 +00:00
|
|
|
#:use-module (gnu packages pdf)
|
gnu: recoll: Enable GUI and add inputs for common filters.
* gnu/packages/search.scm (recoll)[arguments]: Enable GUI; add build phase
'wrap-filters.
[inputs]: Replace python-pdftotext with poppler; add qtbase-5, unzip, gawk,
grep, groff, gzip, libiconv, perl, perl-image-exiftool, sed, and tar.
2021-10-29 11:40:04 +00:00
|
|
|
#:use-module (gnu packages photo)
|
2017-07-10 20:36:50 +00:00
|
|
|
#:use-module (gnu packages python)
|
2021-07-08 03:55:27 +00:00
|
|
|
#:use-module (gnu packages python-crypto)
|
2018-04-04 06:13:30 +00:00
|
|
|
#:use-module (gnu packages python-web)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 13:21:30 +00:00
|
|
|
#:use-module (gnu packages python-xyz)
|
gnu: recoll: Enable GUI and add inputs for common filters.
* gnu/packages/search.scm (recoll)[arguments]: Enable GUI; add build phase
'wrap-filters.
[inputs]: Replace python-pdftotext with poppler; add qtbase-5, unzip, gawk,
grep, groff, gzip, libiconv, perl, perl-image-exiftool, sed, and tar.
2021-10-29 11:40:04 +00:00
|
|
|
#:use-module (gnu packages qt)
|
gnu: Move Sphinx and friends to (gnu packages sphinx).
* gnu/packages/python-xyz.scm (python-sphinxcontrib-websupport,
python2-sphinxcontrib-websupport, python-sphinx, python2-sphinx,
python-sphinx-gallery, python2-sphinx-gallery, python-sphinx-rtd-theme,
python2-sphinx-rtd-theme, python-guzzle-sphinx-theme,
python2-guzzle-sphinx-theme, python-sphinxcontrib-newsfeed,
python-sphinxcontrib-programoutput, python2-sphinxcontrib-programoutput,
python-sphinx-repoze-interface, python2-sphinx-repoze-interface,
python-sphinx-cloud-sptheme, python2-sphinx-cloud-sptheme,
python-sphinx-alabaster-theme, python2-sphinx-alabaster-theme,
python-sphinx-me, python-sphinxcontrib-svg2pdfconverter): Move to ...
(gnu):
* gnu/packages/sphinx.scm: ... here. New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/admin.scm, gnu/packages/bioinformatics.scm,
gnu/packages/calendar.scm, gnu/packages/cluster.scm,
gnu/packages/databases.scm, gnu/packages/dav.scm, gnu/packages/disk.scm,
gnu/packages/django.scm, gnu/packages/elf.scm, gnu/packages/emacs-xyz.scm,
gnu/packages/emulators.scm, gnu/packages/finance.scm, gnu/packages/image.scm,
gnu/packages/libffi.scm, gnu/packages/mail.scm, gnu/packages/mpd.scm,
gnu/packages/openstack.scm, gnu/packages/pdf.scm, gnu/packages/python-web.scm,
gnu/packages/search.scm, gnu/packages/statistics.scm,
gnu/packages/storage.scm, gnu/packages/sync.scm, gnu/packages/terminals.scm,
gnu/packages/tls.scm, gnu/packages/web.scm: Adjust module imports.
2019-05-12 20:56:54 +00:00
|
|
|
#:use-module (gnu packages sphinx)
|
2021-07-08 03:55:27 +00:00
|
|
|
#:use-module (gnu packages time)
|
2023-04-22 08:55:20 +00:00
|
|
|
#:use-module (gnu packages tls)
|
2016-05-18 06:02:02 +00:00
|
|
|
#:use-module (gnu packages web)
|
2018-05-20 22:50:03 +00:00
|
|
|
#:use-module (gnu packages xdisorg)
|
2021-10-04 21:52:32 +00:00
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
#:use-module (gnu packages pkg-config))
|
2014-02-17 04:09:18 +00:00
|
|
|
|
|
|
|
(define-public xapian
|
|
|
|
(package
|
|
|
|
(name "xapian")
|
2022-06-24 12:16:46 +00:00
|
|
|
(version "1.4.19")
|
2022-06-24 12:47:50 +00:00
|
|
|
;; Note: When updating Xapian, remember to update omega and
|
|
|
|
;; python-xapian-bindings below.
|
2014-02-17 04:09:18 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-10-08 03:08:24 +00:00
|
|
|
(uri (string-append "https://oligarchy.co.uk/xapian/" version
|
2014-02-17 04:09:18 +00:00
|
|
|
"/xapian-core-" version ".tar.xz"))
|
|
|
|
(sha256
|
2022-06-24 12:16:46 +00:00
|
|
|
(base32 "1hx92kbqdl38gsrwzvbqgf2jc4wwzsad2gd99g62cdfclvy4ijhz"))))
|
2014-02-17 04:09:18 +00:00
|
|
|
(build-system gnu-build-system)
|
2021-12-13 16:18:24 +00:00
|
|
|
(inputs (list zlib
|
|
|
|
`(,util-linux "lib")))
|
2014-02-17 04:09:18 +00:00
|
|
|
(arguments
|
2016-10-07 00:36:50 +00:00
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
2016-10-08 03:08:24 +00:00
|
|
|
(replace 'check
|
|
|
|
;; As of Xapian 1.3.3, the TCP server implementation uses
|
|
|
|
;; getaddrinfo(). This does not work in the build environment,
|
|
|
|
;; so exclude those tests. See HACKING for the list of targets.
|
2016-10-07 00:36:50 +00:00
|
|
|
(lambda _
|
2018-04-01 05:55:37 +00:00
|
|
|
(invoke "make"
|
|
|
|
"check-inmemory"
|
|
|
|
"check-remoteprog"
|
|
|
|
;"check-remotetcp"
|
|
|
|
"check-multi"
|
|
|
|
"check-glass"
|
|
|
|
"check-chert"))))))
|
2014-02-17 04:09:18 +00:00
|
|
|
(synopsis "Search Engine Library")
|
|
|
|
(description
|
|
|
|
"Xapian is a highly adaptable toolkit which allows developers to easily
|
|
|
|
add advanced indexing and search facilities to their own applications. It
|
|
|
|
supports the Probabilistic Information Retrieval model and also supports a
|
|
|
|
rich set of boolean query operators.")
|
2016-10-08 03:08:24 +00:00
|
|
|
(home-page "https://xapian.org/")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license (list license:gpl2+ license:bsd-3 license:x11))))
|
2014-02-17 04:09:18 +00:00
|
|
|
|
2022-06-24 12:47:50 +00:00
|
|
|
(define-public omega
|
|
|
|
(package
|
|
|
|
(name "omega")
|
|
|
|
(version (package-version xapian))
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://oligarchy.co.uk/xapian/" version
|
|
|
|
"/xapian-omega-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"136dsna6jvq48j4x4rr5y9nxmgrif9kvf4ybl5a6gpsmgqlfzcp4"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
(list (list pcre "bin") perl xapian zlib))
|
|
|
|
(home-page "https://xapian.org/")
|
|
|
|
(synopsis "Search engine built on Xapian")
|
|
|
|
(description
|
|
|
|
"Omega is a search application built on Xapian. It provides indexers and
|
|
|
|
a CGI web search frontend.")
|
|
|
|
(license (list license:gpl2+ ; Main license
|
|
|
|
;; csvescape.cc, csvescape.h, csvesctest.cc, datetime.cc,
|
|
|
|
;; datetime.h, jsonescape.cc, jsonescape.h, jsonesctest.cc,
|
|
|
|
;; mimemap.h, my-html-tok.h, namedents.h, pkglibbindir.cc,
|
|
|
|
;; pkglibbindir.h, timegm.cc, timegm.h, urldecode.h,
|
|
|
|
;; urlencode.cc, urlencode.h, urlenctest.cc, common/Tokeniseise.pm,
|
|
|
|
;; common/keyword.cc, common/keyword.h
|
|
|
|
license:expat))))
|
|
|
|
|
2017-07-10 20:36:50 +00:00
|
|
|
(define-public python-xapian-bindings
|
|
|
|
(package (inherit xapian)
|
|
|
|
(name "python-xapian-bindings")
|
|
|
|
(version (package-version xapian))
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://oligarchy.co.uk/xapian/" version
|
|
|
|
"/xapian-bindings-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2022-06-24 12:16:46 +00:00
|
|
|
"0gc8l9cn8jdma0p73jl14z17yizp6dax5zsycvgprajii6j8bhwi"))))
|
2017-07-10 20:36:50 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags '("--with-python3")
|
|
|
|
#:make-flags
|
|
|
|
(list (string-append "pkgpylibdir="
|
|
|
|
(assoc-ref %outputs "out")
|
2018-01-27 21:00:39 +00:00
|
|
|
"/lib/python" ,(version-major+minor
|
|
|
|
(package-version python))
|
|
|
|
"/site-packages/xapian"))))
|
2019-11-27 22:11:11 +00:00
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list python-sphinx)) ;for documentation
|
2017-07-10 20:36:50 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list python xapian zlib))
|
2017-07-10 20:36:50 +00:00
|
|
|
(synopsis "Python bindings for the Xapian search engine library")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:gpl2+)))
|
2017-07-10 20:36:50 +00:00
|
|
|
|
2019-04-06 00:38:22 +00:00
|
|
|
(define-public perl-search-xapian
|
|
|
|
(package
|
|
|
|
(name "perl-search-xapian")
|
2022-05-29 00:00:00 +00:00
|
|
|
(version "1.2.25.5")
|
2019-04-06 00:38:22 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://cpan/authors/id/O/OL/OLLY/"
|
|
|
|
"Search-Xapian-" version ".tar.gz"))
|
|
|
|
(sha256
|
2022-05-29 00:00:00 +00:00
|
|
|
(base32 "12xs22li1z10rccpxbb4zflkkdh7q37z9hb8nvx1ywfn2b3vskr0"))))
|
2019-04-06 00:38:22 +00:00
|
|
|
(build-system perl-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list perl-devel-leak))
|
2019-04-06 00:38:22 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list xapian))
|
2019-04-06 00:38:22 +00:00
|
|
|
(home-page "https://metacpan.org/release/Search-Xapian")
|
|
|
|
(synopsis "Perl XS frontend to the Xapian C++ search library")
|
|
|
|
(description
|
|
|
|
"Search::Xapian wraps most methods of most Xapian classes. The missing
|
|
|
|
classes and methods should be added in the future. It also provides a
|
|
|
|
simplified, more 'perlish' interface to some common operations.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:perl-license)))
|
2019-04-06 00:38:22 +00:00
|
|
|
|
2015-03-27 21:16:41 +00:00
|
|
|
(define-public libtocc
|
|
|
|
(package
|
|
|
|
(name "libtocc")
|
|
|
|
(version "1.0.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/aidin36/tocc/releases/download/"
|
|
|
|
"v" version "/tocc-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1kd2jd74m8ksc8s7hh0haz0q0c3n0mr39bbky262kk4l58f1g068"))))
|
|
|
|
(build-system gnu-build-system)
|
2021-12-13 16:18:24 +00:00
|
|
|
(native-inputs (list catch-framework))
|
|
|
|
(inputs (list unqlite))
|
2015-03-27 21:16:41 +00:00
|
|
|
(arguments
|
|
|
|
`(#:phases (modify-phases %standard-phases
|
2018-06-22 19:28:16 +00:00
|
|
|
(add-before 'configure 'chdir-source
|
|
|
|
(lambda _
|
|
|
|
(chdir "libtocc/src")
|
|
|
|
#t))
|
|
|
|
(replace 'check
|
|
|
|
(lambda _
|
|
|
|
(with-directory-excursion "../tests"
|
|
|
|
(invoke "./configure"
|
|
|
|
(string-append "CONFIG_SHELL="
|
|
|
|
(which "sh"))
|
|
|
|
(string-append "SHELL="
|
|
|
|
(which "sh"))
|
|
|
|
"CPPFLAGS=-I../src"
|
|
|
|
(string-append
|
|
|
|
"LDFLAGS=-L../src/.libs "
|
|
|
|
"-Wl,-rpath=../src/.libs"))
|
|
|
|
(invoke "make")
|
|
|
|
(invoke "./libtocctests")))))))
|
2018-03-04 23:30:42 +00:00
|
|
|
(home-page "https://t-o-c-c.com/")
|
2015-03-27 21:16:41 +00:00
|
|
|
(synopsis "Tool for Obsessive Compulsive Classifiers")
|
|
|
|
(description
|
|
|
|
"libtocc is the engine of the Tocc project, a tag-based file management
|
|
|
|
system. The goal of Tocc is to provide a better system for classifying files
|
|
|
|
that is more flexible than classic file systems that are based on a tree of
|
|
|
|
files and directories.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:gpl3+)))
|
2015-03-27 21:16:41 +00:00
|
|
|
|
|
|
|
(define-public tocc
|
|
|
|
(package
|
|
|
|
(name "tocc")
|
|
|
|
(version (package-version libtocc))
|
|
|
|
(source (package-source libtocc))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list libtocc unqlite))
|
2015-03-27 21:16:41 +00:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ;No tests
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(add-after
|
utils: 'modify-phases' no longer introduces quotes.
Suggested by Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>.
* guix/build/utils.scm (%modify-phases): Remove quotes.
* guix/build/cmake-build-system.scm (%standard-phases): Adjust
accordingly.
* guix/build/glib-or-gtk-build-system.scm (%standard-phases): Likewise.
* guix/build/gnu-dist.scm (%dist-phases): Likewise.
* guix/build/perl-build-system.scm (%standard-phases): Likewise.
* guix/build/python-build-system.scm (%standard-phases): Likewise.
* guix/build/ruby-build-system.scm (%standard-phases): Likewise.
* guix/build/waf-build-system.scm (%standard-phases): Likewise.
* gnu/packages/bash.scm, gnu/packages/code.scm, gnu/packages/gl.scm,
gnu/packages/gnome.scm, gnu/packages/graphics.scm,
gnu/packages/image.scm, gnu/packages/key-mon.scm,
gnu/packages/ocr.scm, gnu/packages/plotutils.scm,
gnu/packages/search.scm, gnu/packages/video.scm: Likewise.
2015-03-31 20:43:01 +00:00
|
|
|
'unpack 'chdir-source
|
2015-03-27 21:16:41 +00:00
|
|
|
(lambda _ (chdir "cli/src"))))))
|
2018-03-04 23:30:42 +00:00
|
|
|
(home-page "https://t-o-c-c.com/")
|
2015-03-27 21:16:41 +00:00
|
|
|
(synopsis "Command-line interface to libtocc")
|
|
|
|
(description
|
|
|
|
"Tocc is a tag-based file management system. This package contains the
|
|
|
|
command line tool for interacting with libtocc.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:gpl3+)))
|
2015-03-27 21:16:41 +00:00
|
|
|
|
2021-07-08 03:55:27 +00:00
|
|
|
(define-public searx
|
|
|
|
(package
|
|
|
|
(name "searx")
|
|
|
|
(version "1.0.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/searx/searx")
|
|
|
|
(commit version)))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32 "0ghkx8g8jnh8yd46p4mlbjn2zm12nx27v7qflr4c8xhlgi0px0mh"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ;what tests do is make online requests to each engine
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'relax-requirements
|
|
|
|
(lambda _
|
|
|
|
;; Tests can run after build with 'searx-checker' tool in /bin.
|
2022-02-07 15:31:13 +00:00
|
|
|
;; allow using a higher dependency version
|
2021-07-08 03:55:27 +00:00
|
|
|
(substitute* "requirements.txt"
|
2022-02-07 15:31:13 +00:00
|
|
|
(("==") ">="))))
|
|
|
|
(add-before 'sanity-check 'set-debug
|
|
|
|
(lambda _
|
|
|
|
;; the user will need to change the secret key
|
|
|
|
;; https://github.com/searx/searx/issues/2278
|
|
|
|
(setenv "SEARX_DEBUG" "1"))))))
|
2021-07-08 03:55:27 +00:00
|
|
|
(propagated-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list python-babel
|
|
|
|
python-certifi
|
|
|
|
python-dateutil
|
|
|
|
python-flask
|
|
|
|
python-flask-babel
|
|
|
|
python-idna
|
|
|
|
python-jinja2
|
|
|
|
python-langdetect
|
|
|
|
python-lxml
|
|
|
|
python-pygments
|
|
|
|
python-pyyaml
|
|
|
|
python-requests))
|
2021-07-08 03:55:27 +00:00
|
|
|
(home-page "https://searx.github.io/searx/")
|
|
|
|
(synopsis "Privacy-respecting metasearch engine")
|
|
|
|
(description "Searx is a privacy-respecting, hackable metasearch engine.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:agpl3+)))
|
2021-07-08 03:55:27 +00:00
|
|
|
|
2015-05-12 15:28:04 +00:00
|
|
|
(define-public bool
|
|
|
|
(package
|
|
|
|
(name "bool")
|
|
|
|
(version "0.2.2")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/bool/bool-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1frdmgrmb509fxbdpsxxw3lvvwv7xm1pavqrqgm4jg698iix6xfw"))))
|
|
|
|
(build-system gnu-build-system)
|
2017-03-29 22:48:16 +00:00
|
|
|
(home-page "https://www.gnu.org/software/bool/")
|
2015-05-13 21:49:33 +00:00
|
|
|
(synopsis "Finding text and HTML files that match boolean expressions")
|
2015-05-12 15:28:04 +00:00
|
|
|
(description
|
2015-05-13 21:49:33 +00:00
|
|
|
"GNU Bool is a utility to perform text searches on files using Boolean
|
|
|
|
expressions. For example, a search for \"hello AND world\" would return a
|
|
|
|
file containing the phrase \"Hello, world!\". It supports both AND and OR
|
|
|
|
statements, as well as the NEAR statement to search for the occurrence of
|
|
|
|
words in close proximity to each other. It handles context gracefully,
|
|
|
|
accounting for new lines and paragraph changes. It also has robust support
|
|
|
|
for parsing HTML files.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:gpl3+)))
|
2015-05-12 15:28:04 +00:00
|
|
|
|
2023-04-22 08:55:20 +00:00
|
|
|
(define-public dataparksearch
|
|
|
|
(let ((commit "8efa28f31ce1273c0556fd5c7e06abe955197a69")
|
|
|
|
(revision "0"))
|
|
|
|
(package
|
|
|
|
(name "dataparksearch")
|
|
|
|
(version (git-version "4.54" revision commit))
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/Maxime2/dataparksearch")
|
|
|
|
(commit commit)))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"01z7s3ws5px2p9brzrq9j41jbdh1cvj8n8y3ghx45gfv1n319ipg"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
#~(for-each delete-file '("config.sub"
|
|
|
|
"config.guess"
|
|
|
|
"configure"
|
|
|
|
"Makefile.in"
|
|
|
|
"missing"
|
|
|
|
"depcomp"
|
|
|
|
"ltmain.sh"
|
|
|
|
"compile")))
|
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
(list
|
|
|
|
#:configure-flags
|
|
|
|
#~(list "--with-extra-charsets=all"
|
|
|
|
(string-append "--with-aspell=" #$(this-package-input "aspell"))
|
|
|
|
(string-append "--with-pgsql="
|
|
|
|
#$(this-package-input "postgresql")))
|
|
|
|
#:make-flags
|
|
|
|
#~(list "DPS_TEST_DBADDR=postgresql://localhost/tmp/postgresql/")))
|
|
|
|
(native-inputs
|
|
|
|
(list autoconf automake libtool openjade pkg-config))
|
|
|
|
(inputs
|
|
|
|
(list aspell
|
|
|
|
c-ares
|
|
|
|
libextractor
|
2023-05-27 11:27:33 +00:00
|
|
|
mbedtls-lts
|
2023-04-22 08:55:20 +00:00
|
|
|
postgresql
|
|
|
|
zlib))
|
|
|
|
(synopsis "Feature rich search engine")
|
|
|
|
(description
|
|
|
|
"Dataparksearch is a full featured web search engine.
|
|
|
|
It has support for HTTP, HTTPS, ftp (passive mode), NNTP and news URL schemes,
|
|
|
|
and other URL schemes with external parsers. It can tweak URLs with session
|
|
|
|
IDs and other weird formats, including some JavaScript link decoding. Options
|
|
|
|
to query with all words, all words near to each others, any words, or boolean
|
|
|
|
queries. A subset of VQL (Verity Query Language) is supported.")
|
|
|
|
(home-page "https://www.dataparksearch.org/")
|
|
|
|
(license license:gpl2+))))
|
|
|
|
|
2021-12-21 07:29:54 +00:00
|
|
|
(define-public fsearch
|
|
|
|
(package
|
|
|
|
(name "fsearch")
|
2023-09-10 00:00:00 +00:00
|
|
|
(version "0.2.3")
|
2021-12-21 07:29:54 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/cboxdoerfer/fsearch")
|
|
|
|
(commit version)))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
2023-09-10 00:00:00 +00:00
|
|
|
(base32 "12vj1ymvg561594vdq852ianbkgnvrq585qp5jrrv2kq307jh5sl"))))
|
2021-12-21 07:29:54 +00:00
|
|
|
(build-system meson-build-system)
|
|
|
|
(native-inputs
|
|
|
|
(list autoconf
|
|
|
|
automake
|
|
|
|
gettext-minimal
|
|
|
|
`(,glib "bin") ;for glib-compile-resources
|
|
|
|
intltool
|
|
|
|
libtool
|
|
|
|
pkg-config))
|
|
|
|
(inputs
|
2022-08-17 09:38:56 +00:00
|
|
|
(list gtk+ icu4c pcre2))
|
2021-12-21 07:29:54 +00:00
|
|
|
(home-page "https://github.com/cboxdoerfer/fsearch")
|
|
|
|
(synopsis "Fast file search utility")
|
|
|
|
(description
|
|
|
|
"FSearch is a fast file search utility, inspired by Everything
|
|
|
|
Search Engine. It is written in C and based on GTK3.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:gpl2+)))
|
2021-12-21 07:29:54 +00:00
|
|
|
|
2021-10-28 13:26:52 +00:00
|
|
|
(define-public recoll
|
|
|
|
(package
|
|
|
|
(name "recoll")
|
2024-04-01 20:01:13 +00:00
|
|
|
(version "1.37.5")
|
2021-10-28 13:26:52 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2024-04-01 20:01:13 +00:00
|
|
|
(uri (string-append "https://www.recoll.org/recoll-" version ".tar.gz"))
|
2021-10-28 13:26:52 +00:00
|
|
|
(sha256
|
2024-04-01 20:01:13 +00:00
|
|
|
(base32 "0m9ibpa27xrngk31kxhgqv878knw2xpigckx8pqvfzmfvqr81zdy"))))
|
2021-10-28 13:26:52 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2024-04-01 20:01:13 +00:00
|
|
|
(list
|
|
|
|
#:configure-flags
|
|
|
|
#~(list "--disable-webkit"
|
|
|
|
"--disable-python-module"
|
|
|
|
"--without-systemd"
|
|
|
|
"--with-inotify"
|
|
|
|
"--enable-recollq"
|
|
|
|
(string-append "QMAKEPATH=" #$(this-package-input "qtbase")
|
|
|
|
"/bin/qmake"))
|
|
|
|
#:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'set-LDFLAGS
|
|
|
|
(lambda _
|
|
|
|
(setenv "LDFLAGS" (string-append "-Wl,-rpath=" #$output "/lib"))))
|
|
|
|
(add-after 'unpack 'patch-default-data-dir
|
|
|
|
(lambda _
|
|
|
|
(substitute* "python/recoll/recoll/rclconfig.py"
|
|
|
|
(("/opt/local") #$output))))
|
|
|
|
(add-after 'install 'wrap-filters
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(let ((mapping
|
gnu: recoll: Enable GUI and add inputs for common filters.
* gnu/packages/search.scm (recoll)[arguments]: Enable GUI; add build phase
'wrap-filters.
[inputs]: Replace python-pdftotext with poppler; add qtbase-5, unzip, gawk,
grep, groff, gzip, libiconv, perl, perl-image-exiftool, sed, and tar.
2021-10-29 11:40:04 +00:00
|
|
|
'(("rclps"
|
|
|
|
"poppler")
|
|
|
|
("rclpdf.py"
|
|
|
|
"poppler")
|
|
|
|
("rclpurple"
|
|
|
|
"gawk")
|
|
|
|
("rcllyx"
|
|
|
|
"libiconv")
|
|
|
|
("rcltex"
|
|
|
|
"libiconv")
|
|
|
|
("rclkwd"
|
|
|
|
"unzip" "gzip" "tar" "libxslt")
|
|
|
|
("rclman"
|
|
|
|
"groff")
|
|
|
|
("rclgaim"
|
|
|
|
"gawk" "libiconv")
|
|
|
|
("rclaptosidman"
|
|
|
|
"sed")
|
|
|
|
("rclscribus"
|
|
|
|
"grep" "gawk" "sed"))))
|
2024-04-01 20:01:13 +00:00
|
|
|
(for-each
|
|
|
|
(lambda (program packages)
|
|
|
|
(wrap-program (string-append #$output "/share/recoll/filters/" program)
|
|
|
|
`("PATH" ":" prefix
|
|
|
|
,(map (lambda (i)
|
|
|
|
(string-append (assoc-ref inputs i) "/bin"))
|
|
|
|
packages))))
|
|
|
|
(map car mapping)
|
|
|
|
(map cdr mapping))
|
gnu: recoll: Enable GUI and add inputs for common filters.
* gnu/packages/search.scm (recoll)[arguments]: Enable GUI; add build phase
'wrap-filters.
[inputs]: Replace python-pdftotext with poppler; add qtbase-5, unzip, gawk,
grep, groff, gzip, libiconv, perl, perl-image-exiftool, sed, and tar.
2021-10-29 11:40:04 +00:00
|
|
|
|
2024-04-01 20:01:13 +00:00
|
|
|
(wrap-program (string-append #$output "/share/recoll/filters/rclimg")
|
|
|
|
`("PERL5LIB" ":" prefix
|
|
|
|
(,(getenv "PERL5LIB"))))))))))
|
2021-10-28 13:26:52 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list aspell
|
|
|
|
chmlib
|
|
|
|
inotify-tools
|
|
|
|
libxslt
|
|
|
|
libxml2
|
|
|
|
python
|
|
|
|
qtbase-5
|
|
|
|
unzip
|
|
|
|
xapian
|
|
|
|
zlib
|
|
|
|
;; For filters
|
|
|
|
gawk
|
|
|
|
grep
|
|
|
|
groff
|
|
|
|
gzip
|
|
|
|
libiconv
|
|
|
|
perl
|
|
|
|
perl-image-exiftool
|
|
|
|
poppler
|
|
|
|
sed
|
|
|
|
tar))
|
2021-10-28 13:26:52 +00:00
|
|
|
(native-inputs
|
2024-04-01 20:01:13 +00:00
|
|
|
(list pkg-config qttools-5 which))
|
|
|
|
(home-page "https://www.recoll.org")
|
2021-10-28 17:04:46 +00:00
|
|
|
(synopsis "Find documents based on their contents or file names")
|
2021-10-28 13:26:52 +00:00
|
|
|
(description "Recoll finds documents based on their contents as well as
|
|
|
|
their file names. It can search most document formats, but you may need
|
|
|
|
external applications for text extraction. It can reach any storage place:
|
|
|
|
files, archive members, email attachments, transparently handling
|
|
|
|
decompression.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:gpl2+)))
|
2021-10-28 13:26:52 +00:00
|
|
|
|
2017-01-24 17:03:32 +00:00
|
|
|
(define-public hyperestraier
|
|
|
|
(package
|
|
|
|
(name "hyperestraier")
|
|
|
|
(version "1.4.13")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://fallabs.com/" name "/"
|
|
|
|
name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1qk3pxgzyrpcz5qfyd5xs2hw9q1cbb7j5zd4kp1diq501wcj2vs9"))))
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list qdbm zlib))
|
2017-01-24 17:03:32 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/lib"))))
|
2020-01-18 21:53:57 +00:00
|
|
|
(home-page "https://fallabs.com/hyperestraier")
|
2017-01-24 17:03:32 +00:00
|
|
|
(synopsis "Full-text search system")
|
|
|
|
(description "Hyper Estraier can be used to integrate full-text
|
|
|
|
search into applications, using either the provided command line and CGI
|
|
|
|
interfaces, or a C API.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:lgpl2.1+)))
|
2017-01-24 17:03:32 +00:00
|
|
|
|
2016-05-17 23:38:22 +00:00
|
|
|
(define-public mlocate
|
|
|
|
(package
|
|
|
|
(name "mlocate")
|
|
|
|
(version "0.26")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2017-03-30 21:38:14 +00:00
|
|
|
(uri (string-append "http://releases.pagure.org/mlocate/"
|
|
|
|
"mlocate-" version ".tar.xz"))
|
2016-05-17 23:38:22 +00:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0gi6y52gkakhhlnzy0p6izc36nqhyfx5830qirhvk3qrzrwxyqrh"))))
|
|
|
|
(build-system gnu-build-system)
|
2017-03-30 21:38:14 +00:00
|
|
|
(home-page "https://pagure.io/mlocate")
|
2016-09-16 06:08:48 +00:00
|
|
|
(synopsis "Locate files on the file system")
|
2016-05-17 23:38:22 +00:00
|
|
|
(description
|
gnu: Fix descriptions to not use quotes.
* gnu/packages/admin.scm (wpa-supplicant-minimal, mingetty, di),
* gnu/packages/audio.scm (fil-plugins),
* gnu/packages/base.scm (make-ld-wrapper, make-glibc-locales),
* gnu/packages/bioinformatics.scm (r-samtools),
* gnu/packages/chez.scm (chez-mit),
* gnu/packages/commencement.scm (make-gcc-toolchain),
* gnu/packages/compression.scm (fastjar),
* gnu/packages/cran.scm (r-maps, r-rcpp),
* gnu/packages/databases.scm (sparql-query),
* gnu/packages/dunst.scm (dunst),
* gnu/packages/ftp.scm (ncftp),
* gnu/packages/gl.scm (freeglut),
* gnu/packages/haskell-check.scm (ghc-tasty-golden),
* gnu/packages/haskell.scm (ghc-case-insensitive, ghc-text,
ghc-haskell-src, ghc-syb, ghc-deepseq-generics, ghc-network-uri,
ghc-rerebase, ghc-zlib),
* gnu/packages/image.scm (jbig2dec),
* gnu/packages/kde-frameworks.scm (kinit, karchive),
* gnu/packages/linux.scm (wireless-tools, perf, module-init-tools, kbd),
* gnu/packages/lirc.scm (lirc),
* gnu/packages/lisp.scm (uglify-js),
* gnu/packages/mate.scm (mate-netbook),
* gnu/packages/microcom.scm (microcom),
* gnu/packages/music.scm (bristol),
* gnu/packages/networking.scm (perl-geo-ip),
* gnu/packages/patchutils.scm (patches),
* gnu/packages/perl-check.scm (perl-test-more-utf8),
* gnu/packages/perl.scm (perl-log-report-optional, perl-file-which,
perl-io-tty, perl-log-any, perl-digest-sha1, perl-class-load,
perl-regexp-common, perl-module-pluggable, perl-class-modifier),
* gnu/packages/python-xyz.scm (python-backports-abc, python-natsort),
* gnu/packages/samba.scm (iniparser),
* gnu/packages/search.scm (mlocate),
* gnu/packages/spice.scm (spice),
* gnu/packages/statistics.scm (r-dt, r-lubridate, r-estimability,
r-commonmark, r-digest, r-viridislite, r-stringr),
* gnu/packages/tex.scm (texlive-latex-changebar),
* gnu/packages/version-control.scm (subversion),
* gnu/packages/w3m.scm (w3m),
* gnu/packages/web.scm (perl-http-parser,
perl-plack-middleware-reverseproxy),
* gnu/packages/xorg.scm (xkeyboard-config, mkfontdir, xcursor-theme,
mkfontscale, xinit, font-alias)[description]: Use @code instead of quotes.
2019-03-31 13:39:43 +00:00
|
|
|
"mlocate is a locate/updatedb implementation. The @code{m} stands for
|
2016-05-17 23:38:22 +00:00
|
|
|
\"merging\": @code{updatedb} reuses the existing database to avoid rereading
|
|
|
|
most of the file system, which makes it faster and does not trash the system
|
|
|
|
caches as much. The locate(1) utility is intended to be completely compatible
|
|
|
|
with slocate, and attempts to be compatible to GNU locate when it does not
|
|
|
|
conflict with slocate compatibility.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:gpl2)))
|
2016-05-17 23:38:22 +00:00
|
|
|
|
2021-10-04 21:52:32 +00:00
|
|
|
(define-public plocate
|
|
|
|
(package
|
|
|
|
(name "plocate")
|
2024-02-11 04:35:49 +00:00
|
|
|
(version "1.1.22")
|
2021-10-04 21:52:32 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://plocate.sesse.net/download/"
|
|
|
|
"plocate-" version ".tar.gz"))
|
|
|
|
(sha256
|
2024-02-11 04:35:49 +00:00
|
|
|
(base32 "0j80zcklr7g73wsq54wbj8ggp8rj993hdzrywm2c0bmani0lfziv"))))
|
2021-10-04 21:52:32 +00:00
|
|
|
(build-system meson-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list
|
2022-04-01 21:32:04 +00:00
|
|
|
;; Put the database in /var/cache/plocate.db
|
|
|
|
"--sharedstatedir=/var"
|
|
|
|
"-Dinstall_systemd=false"
|
|
|
|
"-Ddbpath=cache/plocate.db")
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'remove-cachedirtag
|
|
|
|
(lambda _
|
|
|
|
(substitute* "meson.build"
|
|
|
|
;; Remove the script adding a "cachedirtag"
|
|
|
|
(("meson.add_install_script") "#")))))))
|
2021-10-04 21:52:32 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list liburing
|
|
|
|
`(,zstd "lib")))
|
2021-10-04 21:52:32 +00:00
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list pkg-config))
|
2021-10-04 21:52:32 +00:00
|
|
|
(home-page "https://plocate.sesse.net/")
|
|
|
|
(synopsis "Faster locate")
|
|
|
|
(description "Plocate is a @code{locate} based on posting lists,
|
|
|
|
completely replacing @command{mlocate} with a faster and smaller index. It is
|
|
|
|
suitable as a default locate on your system.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:gpl2)))
|
2021-10-04 21:52:32 +00:00
|
|
|
|
2016-05-18 06:02:02 +00:00
|
|
|
(define-public swish-e
|
|
|
|
(package
|
|
|
|
(name "swish-e")
|
|
|
|
(version "2.4.7")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2017-02-17 05:27:00 +00:00
|
|
|
(uri (list (string-append
|
|
|
|
"https://web.archive.org/web/20160730145202/"
|
|
|
|
"http://swish-e.org/distribution/"
|
|
|
|
"swish-e-" version ".tar.gz")
|
2016-05-18 06:02:02 +00:00
|
|
|
(string-append "http://http.debian.net/debian/pool/"
|
|
|
|
"main/s/swish-e/swish-e_" version
|
|
|
|
".orig.tar.gz")))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0qkrk7z25yp9hynj21vxkyn7yi8gcagcfxnass5cgczcz0gm9pax"))
|
|
|
|
(patches (search-patches "swish-e-search.patch"
|
|
|
|
"swish-e-format-security.patch"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
;; Several other packages and perl modules may be installed alongside
|
|
|
|
;; swish-e to extend its features at runtime, but are not required for
|
|
|
|
;; building: xpdf, catdoc, MP3::Tag, Spreadsheet::ParseExcel,
|
|
|
|
;; HTML::Entities.
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list perl perl-uri perl-html-parser perl-html-tagset
|
|
|
|
perl-mime-types))
|
2016-05-18 06:02:02 +00:00
|
|
|
(arguments
|
2017-05-14 17:01:53 +00:00
|
|
|
`(;; 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
|
2016-05-18 06:02:02 +00:00
|
|
|
(add-after 'install 'wrap-programs
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out")))
|
|
|
|
(for-each
|
|
|
|
(lambda (program)
|
|
|
|
(wrap-program program
|
|
|
|
`("PERL5LIB" ":" prefix
|
|
|
|
,(map (lambda (i)
|
|
|
|
(string-append (assoc-ref inputs i)
|
|
|
|
"/lib/perl5/site_perl"))
|
|
|
|
;; These perl modules have no propagated
|
|
|
|
;; inputs, so no further analysis needed.
|
|
|
|
'("perl-uri"
|
|
|
|
"perl-html-parser"
|
|
|
|
"perl-html-tagset"
|
|
|
|
"perl-mime-types")))))
|
|
|
|
(list (string-append out "/lib/swish-e/swishspider")
|
|
|
|
(string-append out "/bin/swish-filter-test")))
|
|
|
|
#t))))))
|
2017-02-17 05:27:00 +00:00
|
|
|
(home-page (string-append "https://web.archive.org/web/20160730145202/"
|
|
|
|
"http://swish-e.org"))
|
2016-05-18 06:02:02 +00:00
|
|
|
(synopsis "Web indexing system")
|
|
|
|
(description
|
|
|
|
"Swish-e is Simple Web Indexing System for Humans - Enhanced. Swish-e
|
|
|
|
can quickly and easily index directories of files or remote web sites and
|
|
|
|
search the generated indexes.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:gpl2+))) ; with exception
|
2016-05-18 06:02:02 +00:00
|
|
|
|
2018-04-04 06:13:30 +00:00
|
|
|
(define-public xapers
|
|
|
|
(package
|
|
|
|
(name "xapers")
|
|
|
|
(version "0.8.2")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://finestructure.net/xapers/releases/xapers-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0ykz6hn3qj46w3c99d6q0pi5ncq2894simcl7vapv047zm3cylmd"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(propagated-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list poppler python-urwid xclip xdg-utils))
|
2018-05-20 22:50:03 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list python-latexcodec
|
|
|
|
python-pybtex
|
|
|
|
python-pycurl
|
|
|
|
python-pyyaml
|
|
|
|
python-six
|
|
|
|
python-xapian-bindings))
|
2018-04-04 06:13:30 +00:00
|
|
|
(arguments
|
2018-05-20 22:50:03 +00:00
|
|
|
`(#:modules ((ice-9 rdelim)
|
|
|
|
(guix build python-build-system)
|
|
|
|
(guix build utils))
|
|
|
|
#:phases
|
2018-04-04 06:13:30 +00:00
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'install 'install-doc
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
2018-05-20 22:50:03 +00:00
|
|
|
(define (purge-term-support input output)
|
|
|
|
(let loop ((line (read-line input)))
|
|
|
|
(if (string-prefix? "if [[ \"$term\"" line)
|
|
|
|
(begin (display "eval \"$cmd\"\n" output)
|
|
|
|
#t)
|
|
|
|
(begin (display (string-append line "\n") output)
|
|
|
|
(loop (read-line input))))))
|
2018-04-04 06:13:30 +00:00
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin"))
|
2018-05-20 22:50:03 +00:00
|
|
|
(adder-out (string-append bin "/xapers-adder"))
|
2018-04-04 06:13:30 +00:00
|
|
|
(man1 (string-append out "/share/man/man1")))
|
2018-04-04 23:10:08 +00:00
|
|
|
(install-file "man/man1/xapers.1" man1)
|
|
|
|
(install-file "man/man1/xapers-adder.1" man1)
|
2018-05-20 22:50:03 +00:00
|
|
|
;; below is equivalent to setting --no-term option
|
|
|
|
;; permanently on; this is desirable to avoid imposing
|
|
|
|
;; an x-terminal installation on the user but breaks
|
|
|
|
;; some potential xapers-adder uses like auto browser
|
|
|
|
;; pdf handler, but user could instead still use
|
|
|
|
;; e.g. "xterm -e xapers-adder %F" for same use.
|
|
|
|
;; alternatively we could propagate xterm as an input
|
|
|
|
;; and replace 'x-terminal-emulator' with 'xterm'
|
|
|
|
(call-with-input-file "bin/xapers-adder"
|
|
|
|
(lambda (input)
|
|
|
|
(call-with-output-file adder-out
|
|
|
|
(lambda (output)
|
|
|
|
(purge-term-support input output)))))
|
|
|
|
(chmod adder-out #o555)))))))
|
2018-04-04 06:13:30 +00:00
|
|
|
(home-page "https://finestructure.net/xapers/")
|
|
|
|
(synopsis "Personal document indexing system")
|
|
|
|
(description
|
|
|
|
"Xapers is a personal document indexing system,
|
|
|
|
geared towards academic journal articles build on the Xapian search engine.
|
|
|
|
Think of it as your own personal document search engine, or a local cache of
|
|
|
|
online libraries. It provides fast search of document text and
|
|
|
|
bibliographic data and simple document and bibtex retrieval.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:gpl3+)))
|
2018-04-04 06:13:30 +00:00
|
|
|
|
2021-01-01 18:10:34 +00:00
|
|
|
(define-public ugrep
|
|
|
|
(package
|
|
|
|
(name "ugrep")
|
2023-05-24 18:10:05 +00:00
|
|
|
(version "3.11.2")
|
2021-01-01 18:10:34 +00:00
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/Genivia/ugrep")
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(sha256
|
2023-05-24 18:10:05 +00:00
|
|
|
(base32 "0k0dzdyif9lpk0avjk02xkd6bjg9km4spr3p4hzls88y9hwgcc9l"))
|
2021-04-27 13:51:06 +00:00
|
|
|
(file-name (git-file-name name version))
|
2021-01-01 18:10:34 +00:00
|
|
|
(modules '((guix build utils)))
|
2022-08-06 07:53:09 +00:00
|
|
|
(snippet
|
|
|
|
#~(begin
|
|
|
|
(delete-file-recursively "bin") ; pre-built executables
|
|
|
|
(for-each (lambda (regexp)
|
|
|
|
(for-each delete-file
|
|
|
|
(find-files "tests" regexp)))
|
|
|
|
'("^archive" "\\.pdf$" "\\.class$"))))))
|
2021-01-01 18:10:34 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list bzip2
|
|
|
|
less
|
|
|
|
lz4
|
|
|
|
lzip ;; lzma
|
|
|
|
pcre2
|
2022-08-06 05:37:50 +00:00
|
|
|
zlib
|
|
|
|
`(,zstd "lib")))
|
2021-01-01 18:10:34 +00:00
|
|
|
(arguments
|
2022-08-06 05:37:52 +00:00
|
|
|
(list
|
|
|
|
#:tests? #f ; no way to rebuild the binary input files
|
|
|
|
#:test-target "test"
|
|
|
|
#:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(add-before 'check 'check-setup
|
|
|
|
(lambda _
|
|
|
|
;; Unpatch shebangs in tests.
|
|
|
|
(substitute* '("tests/Hello.bat"
|
|
|
|
"tests/Hello.sh")
|
|
|
|
(("#!/gnu/store/.*/bin/sh") "#!/bin/sh")))))))
|
2021-01-01 18:10:34 +00:00
|
|
|
(home-page "https://github.com/Genivia/ugrep/")
|
|
|
|
(synopsis "Faster grep with an interactive query UI")
|
|
|
|
(description "Ugrep is a ultra fast searcher of file systems, text
|
|
|
|
and binary files, source code, archives, compressed files, documents, and
|
|
|
|
more.
|
|
|
|
|
|
|
|
While still being compatible with the standard GNU/BSD grep command-line
|
|
|
|
options, ugrep supports fuzzy search as well as structured and (adjustable)
|
|
|
|
colored output, piped through \"less\" for pagination. An interactive query
|
|
|
|
UI allows refinement and has a built-in help (press F1). Ugrep implements
|
|
|
|
multi-threaded and other techniques to speed up search, pattern-matching and
|
|
|
|
decompression. Many pre-defined regexps ease searching e.g. C typdefs or XML
|
|
|
|
attributes. Results can be output in several structured or self-defined
|
|
|
|
formats.")
|
2022-06-24 12:44:51 +00:00
|
|
|
(license license:bsd-3)))
|
2021-01-01 18:10:34 +00:00
|
|
|
|
2014-02-17 04:09:18 +00:00
|
|
|
;;; search.scm ends here
|