mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +00:00
272fad732d
* pqrs: 0.1.1 -> 0.2.1 * Update default.nix Co-authored-by: Jonas Heinrich <onny@project-insanity.org>
23 lines
603 B
Nix
23 lines
603 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "pqrs";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "manojkarthick";
|
|
repo = "pqrs";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-/PNGqveN4BSkURFVUpNgHDcPtz9vFhzdY8UK00AMaks=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-3mrNS0zNgsG7mX3RileFLi5iw3SrlEQC96FSANjpKT8=";
|
|
|
|
meta = with lib; {
|
|
description = "CLI tool to inspect Parquet files";
|
|
homepage = "https://github.com/manojkarthick/pqrs";
|
|
license = with licenses; [ mit /* or */ asl20 ];
|
|
maintainers = [ maintainers.manojkarthick ];
|
|
};
|
|
}
|