Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 655 B view raw
1{ 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5}: 6rustPlatform.buildRustPackage { 7 pname = "bdt"; 8 version = "0.18.0"; 9 10 src = fetchFromGitHub { 11 owner = "datafusion-contrib"; 12 repo = "bdt"; 13 rev = "5c6730a8e3cd43c7847aef76b499197730cded58"; 14 hash = "sha256-gUKsJwbpMPSO+KPqyJRodrRLjUpTh/y6C2xhrgvJFKk="; 15 }; 16 17 cargoHash = "sha256-TikWh0U56x3HKca5Dj68Z59mOgedv+K5r+y7/CcpWa8="; 18 19 meta = with lib; { 20 description = "CLI tool to query parquet, json and avro files"; 21 homepage = "https://github.com/datafusion-contrib/bdt"; 22 license = licenses.asl20; 23 mainProgram = "bdt"; 24 maintainers = with maintainers; [ matthiasq ]; 25 }; 26}