1# This file was generated by go2nix.
2{ lib, buildGoPackage, fetchgit }:
3
4buildGoPackage rec {
5 pname = "codesearch";
6 version = "20150717-${lib.strings.substring 0 7 rev}";
7 rev = "a45d81b686e85d01f2838439deaf72126ccd5a96";
8
9 goPackagePath = "github.com/google/codesearch";
10
11 src = fetchgit {
12 inherit rev;
13 url = "https://github.com/google/codesearch";
14 sha256 = "12bv3yz0l3bmsxbasfgv7scm9j719ch6pmlspv4bd4ix7wjpyhny";
15 };
16
17 meta = {
18 description = "Fast, indexed regexp search over large file trees";
19 homepage = "https://github.com/google/codesearch";
20 license = [ lib.licenses.bsd3 ];
21 maintainers = [ lib.maintainers.bennofs ];
22 platforms = lib.platforms.unix;
23 };
24}