distro: Rename (distro) to (gnu packages).
[jackhill/guix/guix.git] / gnu / packages / idutils.scm
CommitLineData
233e7676
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org>
5a8fd06d 3;;;
233e7676 4;;; This file is part of GNU Guix.
5a8fd06d 5;;;
233e7676 6;;; GNU Guix is free software; you can redistribute it and/or modify it
5a8fd06d
LC
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
233e7676 11;;; GNU Guix is distributed in the hope that it will be useful, but
5a8fd06d
LC
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
233e7676 17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
5a8fd06d 18
1ffa7090 19(define-module (gnu packages idutils)
5a8fd06d
LC
20 #:use-module (guix packages)
21 #:use-module (guix download)
22 #:use-module (guix build-system gnu)
23 #:use-module (guix licenses)
59a43334 24 #:use-module (gnu packages))
5a8fd06d
LC
25
26(define-public idutils
27 (package
28 (name "idutils")
29 (version "4.6")
30 (source
31 (origin
32 (method url-fetch)
33 (uri (string-append "mirror://gnu/idutils/idutils-"
34 version ".tar.xz"))
35 (sha256
36 (base32
37 "1hmai3422iaqnp34kkzxdnywl7n7pvlxp11vrw66ybxn9wxg90c1"))))
38 (build-system gnu-build-system)
39 (inputs `(;; TODO: Add Emacs as an input for byte-compilation.
40 ;; ("emacs" ,emacs)
41 ("patch/gets"
42 ,(search-patch "diffutils-gets-undeclared.patch"))))
43 (arguments `(#:patches (list (assoc-ref %build-inputs "patch/gets"))))
44 (home-page "http://www.gnu.org/software/idutils/")
45 (synopsis "GNU Idutils, a text searching utility")
46 (description
47 "An \"ID database\" is a binary file containing a list of file
48names, a list of tokens, and a sparse matrix indicating which
49tokens appear in which files.
50
51With this database and some tools to query it, many
52text-searching tasks become simpler and faster. For example,
53you can list all files that reference a particular `\\#include'
54file throughout a huge source hierarchy, search for all the
55memos containing references to a project, or automatically
56invoke an editor on all files containing references to some
57function or variable. Anyone with a large software project to
58maintain, or a large set of text files to organize, can benefit
59from the ID utilities.
60
61Although the name `ID' is short for `identifier', the ID
62utilities handle more than just identifiers; they also treat
63other kinds of tokens, most notably numeric constants, and the
64contents of certain character strings.")
65 (license gpl3+)))