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

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

23 lines
569 B
Nix
Raw Normal View History

2022-03-08 13:02:55 +00:00
{ lib, buildGoPackage, fetchFromGitHub }:
2016-12-11 14:06:20 +00:00
buildGoPackage rec {
pname = "codesearch";
2022-03-08 13:02:55 +00:00
version = "1.0.0";
2016-12-11 14:06:20 +00:00
goPackagePath = "github.com/google/codesearch";
2022-03-08 13:02:55 +00:00
src = fetchFromGitHub {
owner = "google";
repo = "codesearch";
rev = "v${version}";
sha256 = "sha256-3kJ/JT89krbIvprWayBL4chUmT77Oa1W13UNCr4fe4k=";
2016-12-11 14:06:20 +00:00
};
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
};
}