1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "zed";
8 version = "1.2.0";
9
10 src = fetchFromGitHub {
11 owner = "brimdata";
12 repo = pname;
13 rev = "v${version}";
14 sha256 = "sha256-BK4LB37jr/9O0sjYgFtnEkbFqTsp/1+hcmCNMFDPiPM=";
15 };
16
17 vendorSha256 = "sha256-oAkQRUaEP/RNjpDH4U8XFVokf7KiLk0OWMX+U7qny70=";
18
19 subPackages = [ "cmd/zed" "cmd/zq" ];
20
21 meta = with lib; {
22 description = "A novel data lake based on super-structured data";
23 homepage = "https://github.com/brimdata/zed";
24 license = licenses.bsd3;
25 maintainers = with maintainers; [ dit7ya ];
26 changelog = "https://github.com/brimdata/zed/blob/v${version}/CHANGELOG.md";
27 };
28}