Merge pull request #322686 from r-ryantm/auto-update/mprocs
mprocs: 0.6.4 -> 0.7.0
This commit is contained in:
@@ -2,28 +2,23 @@
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "mprocs";
|
||||
version = "0.6.4";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pvolok";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-uwr+cHenV38IsTEW/PQB0kCDsyahiQrBh4s8v8SyEn8=";
|
||||
repo = "mprocs";
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "sha256-e15SzlX8CHzWOF4UnPybqYHELuT2vZ+4mkbz413WDr4=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-H9oHppG7sew/3JrUtWq2Pip1S9H36qYeHu6x/sPfwV0=";
|
||||
cargoHash = "sha256-UZvXoD70f5QHTW9Xr8tRms1wqV9/dpN/u3Mv7/gwyZ4=";
|
||||
|
||||
# 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; {
|
||||
meta = {
|
||||
description = "TUI tool to run multiple commands in parallel and show the output of each command separately";
|
||||
homepage = "https://github.com/pvolok/mprocs";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ GaetanLepage pyrox0 ];
|
||||
changelog = "https://github.com/pvolok/mprocs/releases/tag/v${version}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ GaetanLepage pyrox0 ];
|
||||
mainProgram = "mprocs";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user