nixpkgs/pkgs/tools/text/codesearch/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
617 B
Nix
Raw Normal View History

2022-04-16 02:26:38 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
2016-12-11 14:06:20 +00:00
2022-04-16 02:26:38 +01:00
buildGoModule rec {
pname = "codesearch";
2022-04-16 02:26:38 +01:00
version = "1.2.0";
2016-12-11 14:06:20 +00:00
2022-03-08 13:02:55 +00:00
src = fetchFromGitHub {
owner = "google";
repo = "codesearch";
rev = "v${version}";
2022-04-16 02:26:38 +01:00
sha256 = "sha256-i03w8PZ31j5EutUZaamZsHz+z4qgX4prePbj5DLA78s=";
2016-12-11 14:06:20 +00:00
};
2022-04-16 02:26:38 +01:00
vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
ldflags = [ "-s" "-w" ];
2022-03-08 13:02:55 +00:00
meta = with lib; {
2016-12-11 14:06:20 +00:00
description = "Fast, indexed regexp search over large file trees";
homepage = "https://github.com/google/codesearch";
2022-03-08 13:02:55 +00:00
license = [ licenses.bsd3 ];
maintainers = with maintainers; [ bennofs ];
2016-12-11 14:06:20 +00:00
};
}