mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
bdt: init 0.18.0
This commit is contained in:
parent
13a8da9671
commit
f6d41588d7
25
pkgs/by-name/bd/bdt/package.nix
Normal file
25
pkgs/by-name/bd/bdt/package.nix
Normal 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 = {
|
||||
description = "boring data tool. A CLI tool to query parquet, json and avro files";
|
||||
homepage = "https://github.com/datafusion-contrib/bdt";
|
||||
license = lib.licenses.asl20;
|
||||
mainProgram = "bdt";
|
||||
maintainers = [];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user