8a73271911
This change adds zq, a part of the zed project https://zed.brimdata.io/. zq is a command-line tool that uses the Zed language for pipeline-style search and analytics. zq can query a variety of data formats in files, over HTTP, or in S3 storage. It is particularly fast when operating on data in the Zed-native ZNG format. The zq design philosophy blends the query/search-tool approach of jq, awk, and grep with the command-line, embedded database approach of sqlite and duckdb.
34 lines
844 B
Nix
34 lines
844 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
, testers
|
|
, zq
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "zq";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "brimdata";
|
|
repo = "zed";
|
|
rev = "v${version}";
|
|
hash = "sha256-BK4LB37jr/9O0sjYgFtnEkbFqTsp/1+hcmCNMFDPiPM=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-oAkQRUaEP/RNjpDH4U8XFVokf7KiLk0OWMX+U7qny70=";
|
|
|
|
subPackages = [ "cmd/zq" ];
|
|
|
|
ldflags = [ "-s" "-X" "github.com/brimdata/zed/cli.Version=${version}" ];
|
|
|
|
passthru.tests = testers.testVersion { package = zq; };
|
|
|
|
meta = with lib; {
|
|
description = "A command-line tool for processing data in diverse input formats, providing search, analytics, and extensive transformations using the Zed language";
|
|
homepage = "https://zed.brimdata.io";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ knl ];
|
|
};
|
|
}
|