8a45d4525b
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
22 lines
569 B
Nix
22 lines
569 B
Nix
{ lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "codesearch";
|
|
version = "1.0.0";
|
|
|
|
goPackagePath = "github.com/google/codesearch";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "codesearch";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-3kJ/JT89krbIvprWayBL4chUmT77Oa1W13UNCr4fe4k=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Fast, indexed regexp search over large file trees";
|
|
homepage = "https://github.com/google/codesearch";
|
|
license = [ licenses.bsd3 ];
|
|
maintainers = with maintainers; [ bennofs ];
|
|
};
|
|
}
|