2016-12-11 14:06:20 +00:00
|
|
|
# This file was generated by go2nix.
|
2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchgit }:
|
2016-12-11 14:06:20 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "codesearch";
|
2017-07-11 20:56:29 +01:00
|
|
|
version = "20150717-${stdenv.lib.strings.substring 0 7 rev}";
|
2016-12-11 14:06:20 +00:00
|
|
|
rev = "a45d81b686e85d01f2838439deaf72126ccd5a96";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/google/codesearch";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
inherit rev;
|
|
|
|
url = "https://github.com/google/codesearch";
|
|
|
|
sha256 = "12bv3yz0l3bmsxbasfgv7scm9j719ch6pmlspv4bd4ix7wjpyhny";
|
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Fast, indexed regexp search over large file trees";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/google/codesearch";
|
2016-12-11 14:06:20 +00:00
|
|
|
license = [ stdenv.lib.licenses.bsd3 ];
|
|
|
|
maintainers = [ stdenv.lib.maintainers.bennofs ];
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|