mprocs: init at 0.2.2

This commit is contained in:
Gaetan Lepage 2022-05-23 16:15:33 +02:00
parent b5917a7ff4
commit 22e0c737ad
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ 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 ];
};
}

View file

@ -1176,6 +1176,8 @@ with pkgs;
midimonster = callPackage ../tools/audio/midimonster { };
mprocs = callPackage ../tools/misc/mprocs { };
nominatim = callPackage ../servers/nominatim { };
pferd = callPackage ../tools/misc/pferd {};