nixpkgs/pkgs/by-name/bd/bdt/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
679 B
Nix
Raw Normal View History

2024-03-21 17:57:37 +00:00
{
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=";
2024-05-28 13:35:34 +00:00
meta = with lib; {
2024-03-21 17:57:37 +00:00
description = "boring data tool. A CLI tool to query parquet, json and avro files";
homepage = "https://github.com/datafusion-contrib/bdt";
2024-05-28 13:35:34 +00:00
license = licenses.asl20;
2024-03-21 17:57:37 +00:00
mainProgram = "bdt";
2024-05-28 13:35:34 +00:00
maintainers = with maintainers; [ matthiasq ];
2024-03-21 17:57:37 +00:00
};
}