about summary refs log tree commit diff
path: root/pkgs/by-name/bd
diff options
context:
space:
mode:
authorMatthias Queitsch <matthias.queitsch@mailbox.org>2024-03-21 18:57:37 +0100
committerMatthias Queitsch <matthias.queitsch@mailbox.org>2024-05-29 12:37:23 +0200
commitf6d41588d762174672ad0b1e01a7b79ef4fa2610 (patch)
treee7887fb534017019c6f16b05ba6855428d7a413f /pkgs/by-name/bd
parent13a8da967119594974797df76e0fbf43194303b1 (diff)
bdt: init 0.18.0
Diffstat (limited to 'pkgs/by-name/bd')
-rw-r--r--pkgs/by-name/bd/bdt/package.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/by-name/bd/bdt/package.nix b/pkgs/by-name/bd/bdt/package.nix
new file mode 100644
index 0000000000000..d1413de83e41f
--- /dev/null
+++ b/pkgs/by-name/bd/bdt/package.nix
@@ -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 = [];
+  };
+}