nixpkgs/pkgs/tools/misc/mprocs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
645 B
Nix
Raw Normal View History

2022-05-23 16:15:33 +02:00
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "mprocs";
2022-06-08 14:29:17 +02:00
version = "0.4.0";
2022-05-23 16:15:33 +02:00
src = fetchFromGitHub {
owner = "pvolok";
repo = pname;
rev = "v${version}";
2022-06-08 14:29:17 +02:00
sha256 = "sha256-IzaXcEm4eUpLWsn59ZSiIJ0mCegLhBiA3ONKI1Djemk=";
2022-05-23 16:15:33 +02:00
};
2022-06-08 14:29:17 +02:00
cargoSha256 = "sha256-nTFCFmmS3IIm+D2PjvDxUKQGTn2h0ajXtxLuosa9rRY=";
2022-05-23 16:15:33 +02:00
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;
2022-06-08 14:29:17 +02:00
maintainers = with maintainers; [ GaetanLepage thehedgeh0g ];
2022-05-23 16:15:33 +02:00
};
}