nixpkgs/pkgs/by-name/bd/bdt/package.nix
Ben Siraphob 690e6a2074
treewide: fix various descriptions to conform to style guide
- Articles at beginning of sentence
- Package names at beginning of sentence
- Final punctuation
- Capitalization
2025-07-21 10:39:47 -07:00

28 lines
685 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage {
pname = "bdt";
version = "0.18.0";
src = fetchFromGitHub {
owner = "datafusion-contrib";
repo = "bdt";
rev = "5c6730a8e3cd43c7847aef76b499197730cded58";
hash = "sha256-gUKsJwbpMPSO+KPqyJRodrRLjUpTh/y6C2xhrgvJFKk=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-TikWh0U56x3HKca5Dj68Z59mOgedv+K5r+y7/CcpWa8=";
meta = with lib; {
description = "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 ];
};
}