Skip to content

Commit

Permalink
Merge pull request #323408 from GaetanLepage/mprocs
Browse files Browse the repository at this point in the history
mprocs: 0.7.0 -> 0.7.1
  • Loading branch information
drupol authored Jun 29, 2024
2 parents 449990d + 55211c1 commit 65ed212
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pkgs/tools/misc/mprocs/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,30 @@
{ lib, fetchFromGitHub, rustPlatform }:
{ lib, fetchFromGitHub, rustPlatform, nix-update-script, testers, mprocs }:

rustPlatform.buildRustPackage rec {
pname = "mprocs";
version = "0.7.0";
version = "0.7.1";

src = fetchFromGitHub {
owner = "pvolok";
repo = "mprocs";
rev = "refs/tags/v${version}";
sha256 = "sha256-e15SzlX8CHzWOF4UnPybqYHELuT2vZ+4mkbz413WDr4=";
sha256 = "sha256-gK2kgc0Y0s1xys+pUadi8BhGeYxtyKRhNycCoqftmDI=";
};

cargoHash = "sha256-UZvXoD70f5QHTW9Xr8tRms1wqV9/dpN/u3Mv7/gwyZ4=";
cargoHash = "sha256-lcs+x2devOEZg5YwAzlZKJl6VpCJXzVqNUr6N5pCei8=";

passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion { package = mprocs; };
};

meta = {
description = "TUI tool to run multiple commands in parallel and show the output of each command separately";
homepage = "https://github.com/pvolok/mprocs";
changelog = "https://github.com/pvolok/mprocs/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage pyrox0 ];
platforms = lib.platforms.unix;
mainProgram = "mprocs";
};
}

0 comments on commit 65ed212

Please sign in to comment.