2022-05-23 14:15:33 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "mprocs";
|
2024-06-26 16:48:55 +00:00
|
|
|
version = "0.7.0";
|
2022-05-23 14:15:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pvolok";
|
2024-06-26 16:48:55 +00:00
|
|
|
repo = "mprocs";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "sha256-e15SzlX8CHzWOF4UnPybqYHELuT2vZ+4mkbz413WDr4=";
|
2022-05-23 14:15:33 +00:00
|
|
|
};
|
|
|
|
|
2024-06-26 16:48:55 +00:00
|
|
|
cargoHash = "sha256-UZvXoD70f5QHTW9Xr8tRms1wqV9/dpN/u3Mv7/gwyZ4=";
|
2022-10-19 06:51:53 +00:00
|
|
|
|
2024-06-26 16:48:55 +00:00
|
|
|
meta = {
|
2024-06-07 07:46:46 +00:00
|
|
|
description = "TUI tool to run multiple commands in parallel and show the output of each command separately";
|
2022-05-23 14:15:33 +00:00
|
|
|
homepage = "https://github.com/pvolok/mprocs";
|
2024-06-26 16:48:55 +00:00
|
|
|
changelog = "https://github.com/pvolok/mprocs/releases/tag/v${version}";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ GaetanLepage pyrox0 ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "mprocs";
|
2022-05-23 14:15:33 +00:00
|
|
|
};
|
|
|
|
}
|