paratest: init at 7.4.1
This commit is contained in:
parent
08872ec38b
commit
37884dca3c
3066
pkgs/by-name/pa/paratest/composer.lock
generated
Normal file
3066
pkgs/by-name/pa/paratest/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
28
pkgs/by-name/pa/paratest/package.nix
Normal file
28
pkgs/by-name/pa/paratest/package.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ php
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
(php.withExtensions ({ enabled, all }: enabled ++ [ all.pcov ])).buildComposerProject (finalAttrs: {
|
||||
pname = "paratest";
|
||||
version = "7.4.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "paratestphp";
|
||||
repo = "paratest";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-0cyv2WSiGjyp9vv2J8hxFnuvxAwrig1DmSxKSdBzNGI=";
|
||||
};
|
||||
|
||||
composerLock = ./composer.lock;
|
||||
vendorHash = "sha256-vYcfmVEMGhAvPYTsVAJl7njxgVkL1b8QBr/3/DCxmCE=";
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/paratestphp/paratest/releases/tag/v${finalAttrs.version}";
|
||||
description = "Parallel testing for PHPUnit";
|
||||
homepage = "https://github.com/paratestphp/paratest";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "paratest";
|
||||
maintainers = with lib.maintainers; [ patka ];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user