nixpkgs/pkgs/development/tools/pqrs/default.nix
R. RyanTM 272fad732d
pqrs: 0.1.1 -> 0.2.1 (#183740)
* pqrs: 0.1.1 -> 0.2.1

* Update default.nix

Co-authored-by: Jonas Heinrich <onny@project-insanity.org>
2022-08-21 11:15:15 +02:00

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 ];
};
}