nixpkgs/pkgs/by-name/mp/mprocs/package.nix

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

31 lines
950 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform, nix-update-script, testers, mprocs }:
2022-05-23 14:15:33 +00:00
rustPlatform.buildRustPackage rec {
pname = "mprocs";
version = "0.7.1";
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-gK2kgc0Y0s1xys+pUadi8BhGeYxtyKRhNycCoqftmDI=";
2022-05-23 14:15:33 +00:00
};
cargoHash = "sha256-lcs+x2devOEZg5YwAzlZKJl6VpCJXzVqNUr6N5pCei8=";
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion { package = mprocs; };
};
2022-10-19 06:51:53 +00:00
2024-06-26 16:48:55 +00:00
meta = {
2022-05-23 14:15:33 +00:00
description = "TUI tool to run multiple commands in parallel and show the output of each command separately";
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 ];
platforms = lib.platforms.unix;
2023-11-27 01:17:53 +00:00
mainProgram = "mprocs";
2022-05-23 14:15:33 +00:00
};
}