biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / codesearch / default.nix
blob7a948388e09ca7b5adb0d7595957e2b99e726a7f
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "codesearch";
5   version = "1.2.0";
7   src = fetchFromGitHub {
8     owner = "google";
9     repo = "codesearch";
10     rev = "v${version}";
11     sha256 = "sha256-i03w8PZ31j5EutUZaamZsHz+z4qgX4prePbj5DLA78s=";
12   };
14   vendorHash = null;
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     description = "Fast, indexed regexp search over large file trees";
20     homepage = "https://github.com/google/codesearch";
21     license = [ licenses.bsd3 ];
22     maintainers = with maintainers; [ bennofs ];
23   };