Skip to content
Snippets Groups Projects
Commit 6ad2e17e authored by Eric Bavier's avatar Eric Bavier
Browse files

gnu: Add bool.

* gnu/packages/search.scm (bool): New variable.
parent 1600544a
No related branches found
No related tags found
No related merge requests found
......@@ -124,4 +124,26 @@ (define-public tocc
command line tool for interacting with libtocc.")
(license gpl3+)))
(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)
(home-page "https://www.gnu.org/software/bool")
(synopsis "Find files that match a boolean expression")
(description
"GNU Bool is a utility for finding files that match a boolean expression.
The boolean operators supported are AND, OR, and NOT. Also supported is the
NEAR operator for locating two expressions within a short distance from each
other.")
(license gpl3+)))
;;; search.scm ends here
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment