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

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

29 lines
872 B
Nix
Raw Normal View History

2022-05-23 14:15:33 +00:00
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "mprocs";
2022-10-23 21:13:35 +00:00
version = "0.6.4";
2022-05-23 14:15:33 +00:00
src = fetchFromGitHub {
owner = "pvolok";
repo = pname;
rev = "v${version}";
2022-10-23 21:13:35 +00:00
sha256 = "sha256-uwr+cHenV38IsTEW/PQB0kCDsyahiQrBh4s8v8SyEn8=";
2022-05-23 14:15:33 +00:00
};
2022-10-23 21:13:35 +00:00
cargoSha256 = "sha256-H9oHppG7sew/3JrUtWq2Pip1S9H36qYeHu6x/sPfwV0=";
2022-10-19 06:51:53 +00:00
# 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;
2022-05-23 14:15:33 +00: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 12:29:17 +00:00
maintainers = with maintainers; [ GaetanLepage thehedgeh0g ];
2022-05-23 14:15:33 +00:00
};
}