Merge pull request #297786 from matthias-Q/add_boring_data_tool

add: bdt (boring data tool)
This commit is contained in:
Sandro 2024-06-11 00:28:02 +02:00 committed by GitHub
commit 81d2dc3b73
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 31 additions and 0 deletions

View File

@ -12903,6 +12903,12 @@
githubId = 427866;
name = "Matthias Beyer";
};
matthiasq = {
email = "matthias.queitsch@mailbox.org";
github = "matthias-Q";
githubId = 35303817;
name = "Matthias Queitsch";
};
MatthieuBarthel = {
email = "matthieu@imatt.ch";
name = "Matthieu Barthel";

View File

@ -0,0 +1,25 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "bdt";
version = "0.18.0";
src = fetchFromGitHub {
owner = "datafusion-contrib";
repo = "bdt";
rev = "5c6730a8e3cd43c7847aef76b499197730cded58";
hash = "sha256-gUKsJwbpMPSO+KPqyJRodrRLjUpTh/y6C2xhrgvJFKk=";
};
cargoHash = "sha256-4KrFhchoIB2N89m7HrL0xj2Z+u/6/6Onxa2wIAX18Io=";
meta = with lib; {
description = "boring data tool. A CLI tool to query parquet, json and avro files";
homepage = "https://github.com/datafusion-contrib/bdt";
license = licenses.asl20;
mainProgram = "bdt";
maintainers = with maintainers; [ matthiasq ];
};
}