Merge pull request #113138 from manojkarthick/pqrs-init

pqrs: init at 0.1.1
This commit is contained in:
Sandro 2021-02-16 05:12:57 +01:00 committed by GitHub
commit e390037266
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "pqrs";
version = "0.1.1";
src = fetchFromGitHub {
owner = "manojkarthick";
repo = "pqrs";
rev = "v${version}";
sha256 = "1vx952ki1rhwfmr3faxs363m9fh61b37b0bkbs57ggn9r44sk1z2";
};
cargoSha256 = "1c482y83gzpvazdsxsx5n509mkqmyz640s18y4yg928mmqbsz9c4";
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 ];
};
}

View file

@ -12656,6 +12656,8 @@ in
pprof = callPackage ../development/tools/profiling/pprof { };
pqrs = callPackage ../development/tools/pqrs { };
pyprof2calltree = with python3Packages; toPythonApplication pyprof2calltree;
prelink = callPackage ../development/tools/misc/prelink { };