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

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

25 lines
704 B
Nix
Raw Normal View History

2016-12-11 17:06:20 +03:00
# This file was generated by go2nix.
{ lib, buildGoPackage, fetchgit }:
2016-12-11 17:06:20 +03:00
buildGoPackage rec {
pname = "codesearch";
2021-01-15 12:19:50 +03:00
version = "20150717-${lib.strings.substring 0 7 rev}";
2016-12-11 17:06:20 +03:00
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";
2021-01-15 12:19:50 +03:00
license = [ lib.licenses.bsd3 ];
maintainers = [ lib.maintainers.bennofs ];
platforms = lib.platforms.unix;
2016-12-11 17:06:20 +03:00
};
}