mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
23 lines
627 B
Nix
23 lines
627 B
Nix
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "mprocs";
|
|
version = "0.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pvolok";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-9wac2jlh8MLggcYuEHVUPYPjhfzGN+4o1XT8B9pj4f8=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-vGhoM5VMJO+ppLk8DetNZ8UteU6ifdtRe1HNJ0dSB+0=";
|
|
|
|
meta = with lib; {
|
|
description = "A 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 = [ maintainers.GaetanLepage ];
|
|
};
|
|
}
|