aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/text/codesearch/default.nix
blob: 37336e63efe612d69b463ae32a685b0c7c34a822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This file was generated by go2nix.
{ stdenv, buildGoPackage, fetchgit }:

buildGoPackage rec {
  pname = "codesearch";
  version = "20150717-${stdenv.lib.strings.substring 0 7 rev}";
  rev = "a45d81b686e85d01f2838439deaf72126ccd5a96";

  goPackagePath = "github.com/google/codesearch";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/google/codesearch";
    sha256 = "12bv3yz0l3bmsxbasfgv7scm9j719ch6pmlspv4bd4ix7wjpyhny";
  };

  meta = {
    description = "Fast, indexed regexp search over large file trees";
    homepage = "https://github.com/google/codesearch";
    license = [ stdenv.lib.licenses.bsd3 ];
    maintainers = [ stdenv.lib.maintainers.bennofs ];
    platforms = stdenv.lib.platforms.unix;
  };
}