mprocs: 0.4.0 -> 0.6.3

This commit is contained in:
Gaetan Lepage 2022-10-19 08:51:53 +02:00
parent 834c3a42d3
commit ae2407bfc9

View File

@ -2,16 +2,22 @@
rustPlatform.buildRustPackage rec {
pname = "mprocs";
version = "0.4.0";
version = "0.6.3";
src = fetchFromGitHub {
owner = "pvolok";
repo = pname;
rev = "v${version}";
sha256 = "sha256-IzaXcEm4eUpLWsn59ZSiIJ0mCegLhBiA3ONKI1Djemk=";
sha256 = "sha256-CEvQq5tBVRvjgb/yReuGkPk8Uq1oZbrsGilV4ulOPEk=";
};
cargoSha256 = "sha256-nTFCFmmS3IIm+D2PjvDxUKQGTn2h0ajXtxLuosa9rRY=";
cargoSha256 = "sha256-RK8VmEajfqYXGS8VMCRxhENLbe40CdaC+vS4EKeW958=";
# Package tests are currently failing (even upstream) but the package seems to work fine.
# Relevant issues:
# https://github.com/pvolok/mprocs/issues/50
# https://github.com/pvolok/mprocs/issues/61
doCheck = false;
meta = with lib; {
description = "A TUI tool to run multiple commands in parallel and show the output of each command separately";