mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 05:00:19 +00:00
Merge pull request #323408 from GaetanLepage/mprocs
mprocs: 0.7.0 -> 0.7.1
This commit is contained in:
commit
65ed2124ae
@ -1,17 +1,22 @@
|
|||||||
{ lib, fetchFromGitHub, rustPlatform }:
|
{ lib, fetchFromGitHub, rustPlatform, nix-update-script, testers, mprocs }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "mprocs";
|
pname = "mprocs";
|
||||||
version = "0.7.0";
|
version = "0.7.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pvolok";
|
owner = "pvolok";
|
||||||
repo = "mprocs";
|
repo = "mprocs";
|
||||||
rev = "refs/tags/v${version}";
|
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 = {
|
meta = {
|
||||||
description = "TUI tool to run multiple commands in parallel and show the output of each command separately";
|
description = "TUI tool to run multiple commands in parallel and show the output of each command separately";
|
||||||
@ -19,6 +24,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
changelog = "https://github.com/pvolok/mprocs/releases/tag/v${version}";
|
changelog = "https://github.com/pvolok/mprocs/releases/tag/v${version}";
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ GaetanLepage pyrox0 ];
|
maintainers = with lib.maintainers; [ GaetanLepage pyrox0 ];
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
mainProgram = "mprocs";
|
mainProgram = "mprocs";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user