Merge pull request #113138 from manojkarthick/pqrs-init
pqrs: init at 0.1.1
This commit is contained in:
commit
e390037266
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -12656,6 +12656,8 @@ in
|
||||||
|
|
||||||
pprof = callPackage ../development/tools/profiling/pprof { };
|
pprof = callPackage ../development/tools/profiling/pprof { };
|
||||||
|
|
||||||
|
pqrs = callPackage ../development/tools/pqrs { };
|
||||||
|
|
||||||
pyprof2calltree = with python3Packages; toPythonApplication pyprof2calltree;
|
pyprof2calltree = with python3Packages; toPythonApplication pyprof2calltree;
|
||||||
|
|
||||||
prelink = callPackage ../development/tools/misc/prelink { };
|
prelink = callPackage ../development/tools/misc/prelink { };
|
||||||
|
|
Loading…
Reference in New Issue