unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#51979] [PATCH] Add fsearch
@ 2021-11-19 19:57 Nicolas Goaziou
  2021-11-19 20:08 ` Nicolas Goaziou
  2021-12-21  8:32 ` bug#51979: " Nicolas Goaziou
  0 siblings, 2 replies; 3+ messages in thread
From: Nicolas Goaziou @ 2021-11-19 19:57 UTC (permalink / raw)
  To: 51979

[-- Attachment #1: Type: text/plain, Size: 88 bytes --]

Hello,

The following patch adds FSearch to "search.scm".

Regards,
-- 
Nicolas Goaziou

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Add fsearch --]
[-- Type: text/x-diff, Size: 1863 bytes --]

From 64e51876eb8aae32efeb5a6578fc4fd31a6472ff Mon Sep 17 00:00:00 2001
Message-Id: <64e51876eb8aae32efeb5a6578fc4fd31a6472ff.1637351724.git.mail@nicolasgoaziou.fr>
From: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Date: Fri, 19 Nov 2021 20:55:04 +0100
Subject: [PATCH] gnu: Add fsearch.

* gnu/packages/search.scm (fsearch): New variable.
---
 gnu/packages/search.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm
index 8c5e5f7cdf..63980acc9d 100644
--- a/gnu/packages/search.scm
+++ b/gnu/packages/search.scm
@@ -293,6 +293,39 @@ (define-public bool
 for parsing HTML files.")
     (license gpl3+)))
 
+(define-public fsearch
+  (package
+    (name "fsearch")
+    (version "0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/cboxdoerfer/fsearch")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1jr0rrndq9iyz76yb67i3a9vz8bdasw9qcsvdid2sq0vfgvrrqbb"))))
+    (build-system meson-build-system)
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("gettext" ,gettext-minimal)
+       ("glib" ,glib "bin")             ;for glib-compile-resources
+       ("intltool" ,intltool)
+       ("libtool" ,libtool)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("gtk+" ,gtk+)
+       ("icu4c" ,icu4c)
+       ("pcre" ,pcre)))
+    (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.")
+    (license license:gpl2+)))
+
 (define-public recoll
   (package
     (name "recoll")
-- 
2.33.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-12-21  8:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-19 19:57 [bug#51979] [PATCH] Add fsearch Nicolas Goaziou
2021-11-19 20:08 ` Nicolas Goaziou
2021-12-21  8:32 ` bug#51979: " Nicolas Goaziou

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).