This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / nix / pkgs / zoekt-webserver.nix
681 B 28 lines
1{ 2 lib, 3 buildGoModule, 4 fetchFromTangled, 5}: 6buildGoModule { 7 pname = "zoekt-webserver"; 8 version = "0-unstable-2026-03-25"; 9 10 src = fetchFromTangled { 11 did = "did:plc:j7br4gn6mwy72wd6skzjhwh5"; 12 rev = "cfc4aa0d9ea620143fef099bfed61a88e434c9cd"; 13 hash = "sha256-BizF1KGkNecAmc31KuC0rlwLY9dHaYtyohSwTUzX5CE="; 14 }; 15 subPackages = ["cmd/zoekt-webserver"]; 16 17 vendorHash = "sha256-pWzVhu5nY4e97dHuw5ncLP8YkiYjk0m9l70GYizLNj8="; 18 19 doCheck = false; 20 21 meta = { 22 description = "Fast trigram based code search"; 23 homepage = "https://github.com/sourcegraph/zoekt"; 24 license = lib.licenses.asl20; 25 maintainers = []; 26 mainProgram = "zoekt-webserver"; 27 }; 28}