nixpkgs/pkgs/tools/misc/idutils/default.nix

57 lines
2.1 KiB
Nix
Raw Normal View History

2021-07-08 16:04:20 +01:00
{ fetchurl, lib, stdenv, emacs, gnulib, autoconf, bison, automake, gettext, gperf, texinfo, perl, rsync, gawk}:
stdenv.mkDerivation rec {
2021-07-08 16:04:20 +01:00
pname = "idutils";
version = "4.6";
src = fetchurl {
2021-07-08 16:04:20 +01:00
url = "mirror://gnu/idutils/idutils-${version}.tar.xz";
sha256 = "1hmai3422iaqnp34kkzxdnywl7n7pvlxp11vrw66ybxn9wxg90c1";
};
2021-07-08 16:04:20 +01:00
preConfigure = ''
# replace embedded gnulib tests with those from gnulib package
bash -O extglob -c "cd gnulib-tests; rm -r !(Makefile.am)"
substituteInPlace ./configure.ac --replace "AC_PREREQ(2.61)" "AC_PREREQ(2.64)"
./bootstrap --force --gnulib-srcdir=${gnulib} --skip-po --bootstrap-sync --no-git
'';
2021-01-15 09:19:50 +00:00
buildInputs = lib.optional stdenv.isLinux emacs;
2021-07-08 16:04:20 +01:00
nativeBuildInputs = [ gnulib autoconf bison automake gettext gperf texinfo perl rsync gawk ];
2017-03-06 21:20:58 +00:00
doCheck = !stdenv.isDarwin;
patches = [ ./nix-mapping.patch ];
2021-07-08 16:04:20 +01:00
meta = with lib; {
description = "Text searching utility";
longDescription = ''
An "ID database" is a binary file containing a list of file
names, a list of tokens, and a sparse matrix indicating which
tokens appear in which files.
With this database and some tools to query it, many
text-searching tasks become simpler and faster. For example,
you can list all files that reference a particular `\#include'
file throughout a huge source hierarchy, search for all the
memos containing references to a project, or automatically
invoke an editor on all files containing references to some
function or variable. Anyone with a large software project to
maintain, or a large set of text files to organize, can benefit
from the ID utilities.
Although the name `ID' is short for `identifier', the ID
utilities handle more than just identifiers; they also treat
other kinds of tokens, most notably numeric constants, and the
contents of certain character strings.
'';
homepage = "https://www.gnu.org/software/idutils/";
2021-07-08 16:04:20 +01:00
license = licenses.gpl3Plus;
2021-07-08 16:04:20 +01:00
maintainers = with maintainers; [ gfrascadorio ];
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.all;
};
}