Skip to content

Commit 65ed212

Browse files
authored
Merge pull request #323408 from GaetanLepage/mprocs
mprocs: 0.7.0 -> 0.7.1
2 parents 449990d + 55211c1 commit 65ed212

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

pkgs/tools/misc/mprocs/default.nix

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,30 @@
1-
{ lib, fetchFromGitHub, rustPlatform }:
1+
{ lib, fetchFromGitHub, rustPlatform, nix-update-script, testers, mprocs }:
22

33
rustPlatform.buildRustPackage rec {
44
pname = "mprocs";
5-
version = "0.7.0";
5+
version = "0.7.1";
66

77
src = fetchFromGitHub {
88
owner = "pvolok";
99
repo = "mprocs";
1010
rev = "refs/tags/v${version}";
11-
sha256 = "sha256-e15SzlX8CHzWOF4UnPybqYHELuT2vZ+4mkbz413WDr4=";
11+
sha256 = "sha256-gK2kgc0Y0s1xys+pUadi8BhGeYxtyKRhNycCoqftmDI=";
1212
};
1313

14-
cargoHash = "sha256-UZvXoD70f5QHTW9Xr8tRms1wqV9/dpN/u3Mv7/gwyZ4=";
14+
cargoHash = "sha256-lcs+x2devOEZg5YwAzlZKJl6VpCJXzVqNUr6N5pCei8=";
15+
16+
passthru = {
17+
updateScript = nix-update-script { };
18+
tests.version = testers.testVersion { package = mprocs; };
19+
};
1520

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

0 commit comments

Comments
 (0)