12 stdenv.mkDerivation (finalAttrs: {
13 pname = "ugrep-indexer";
16 src = fetchFromGitHub {
18 repo = "ugrep-indexer";
19 rev = "v${finalAttrs.version}";
20 hash = "sha256-XKjCAYPBRQgId66LupTlODPh2ctzvk7rHWznkLd4C8c=";
33 description = "Utility that recursively indexes files to speed up recursive grepping";
34 homepage = "https://github.com/Genivia/ugrep-indexer";
35 changelog = "https://github.com/Genivia/ugrep-indexer/releases/tag/v${finalAttrs.version}";
36 maintainers = with maintainers; [ mikaelfangel ];
37 license = licenses.bsd3;
38 platforms = platforms.all;