python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / zed / default.nix
blob1eafbaab016c06a3cbef8a855c7bc5e4a1baa7cf
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "zed";
8   version = "1.2.0";
10   src = fetchFromGitHub {
11     owner = "brimdata";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-BK4LB37jr/9O0sjYgFtnEkbFqTsp/1+hcmCNMFDPiPM=";
15   };
17   vendorSha256 = "sha256-oAkQRUaEP/RNjpDH4U8XFVokf7KiLk0OWMX+U7qny70=";
19   subPackages = [ "cmd/zed" "cmd/zq" ];
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   };