mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
23 lines
588 B
Nix
23 lines
588 B
Nix
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "csv2parquet";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "domoritz";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-kb5j7d5lhElbDuoDpsijaXy3Dxjs7nRCUorkg4vKQi8=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-rfwqLWNl05GyIBCOv9PaaYmkHBa58x0ck8Jz1qZyeos=";
|
|
|
|
meta = with lib; {
|
|
description = "Convert CSV files to Apache Parquet";
|
|
homepage = "https://github.com/domoritz/csv2parquet";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ john-shaffer ];
|
|
};
|
|
}
|