mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
codesearch: init at 20150617
This commit is contained in:
parent
2436fc1b11
commit
a55bf2b812
26
pkgs/tools/text/codesearch/default.nix
Normal file
26
pkgs/tools/text/codesearch/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
# This file was generated by go2nix.
|
||||
{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "codesearch-${version}";
|
||||
version = "20150617-${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";
|
||||
};
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
3
pkgs/tools/text/codesearch/deps.nix
Normal file
3
pkgs/tools/text/codesearch/deps.nix
Normal file
@ -0,0 +1,3 @@
|
||||
# This file was generated by go2nix.
|
||||
[
|
||||
]
|
@ -779,6 +779,8 @@ in
|
||||
|
||||
cpulimit = callPackage ../tools/misc/cpulimit { };
|
||||
|
||||
codesearch = callPackage ../tools/text/codesearch { };
|
||||
|
||||
contacts = callPackage ../tools/misc/contacts {
|
||||
inherit (darwin.apple_sdk.frameworks) Foundation AddressBook;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user