mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 19:16:11 +00:00
pest: init at 2.33.4
Signed-off-by: Patka <patka@patka.dev>
This commit is contained in:
parent
34786bd648
commit
437da0b3b6
4280
pkgs/by-name/pe/pest/composer.lock
generated
Normal file
4280
pkgs/by-name/pe/pest/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
25
pkgs/by-name/pe/pest/package.nix
Normal file
25
pkgs/by-name/pe/pest/package.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, fetchFromGitHub, php }:
|
||||
|
||||
php.buildComposerProject (finalAttrs: {
|
||||
pname = "pest";
|
||||
version = "2.33.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pestphp";
|
||||
repo = "pest";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-9AJww0mynlacBsQvqb++vWn0vsapxFeXsA/tJJEQGFI=";
|
||||
};
|
||||
|
||||
composerLock = ./composer.lock;
|
||||
vendorHash = "sha256-Z3vmHqySLU0zRqnDoVTt6FURxtJjVOyUXlURSsO6XE8=";
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/pestphp/pest/releases/tag/v${finalAttrs.version}";
|
||||
description = "PHP testing framework";
|
||||
homepage = "https://pestphp.com";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "pest";
|
||||
maintainers = with lib.maintainers; [ patka ];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user