Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
6ad2e17e
Commit
6ad2e17e
authored
9 years ago
by
Eric Bavier
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add bool.
* gnu/packages/search.scm (bool): New variable.
parent
1600544a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/search.scm
+22
-0
22 additions, 0 deletions
gnu/packages/search.scm
with
22 additions
and
0 deletions
gnu/packages/search.scm
+
22
−
0
View file @
6ad2e17e
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment