mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
62 lines
2.2 KiB
Nix
62 lines
2.2 KiB
Nix
{ fetchurl, lib, stdenv, emacs, gnulib, autoconf, bison, automake, gettext, gperf, texinfo, perl, rsync, darwin }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "idutils";
|
|
version = "4.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/idutils/idutils-${version}.tar.xz";
|
|
sha256 = "1hmai3422iaqnp34kkzxdnywl7n7pvlxp11vrw66ybxn9wxg90c1";
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
|
|
emacs
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.CoreServices
|
|
];
|
|
|
|
nativeBuildInputs = [ gnulib autoconf bison automake gettext gperf texinfo perl rsync ];
|
|
|
|
doCheck = !stdenv.hostPlatform.isDarwin;
|
|
|
|
patches = [ ./nix-mapping.patch ];
|
|
|
|
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/";
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ gfrascadorio ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|