phpPackages.psalm: 5.15.1 -> 5.22.2

This commit is contained in:
Pol Dellaiera 2024-02-02 16:54:57 +01:00
parent f43fb4c110
commit f4c31eb9c5
No known key found for this signature in database
GPG key ID: D476DFE9C67467CA
2 changed files with 248 additions and 299 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,19 +1,23 @@
{ lib, fetchgit, php }:
{ lib
, fetchFromGitHub
, php
}:
php.buildComposerProject (finalAttrs: {
pname = "psalm";
version = "5.15.0";
version = "5.22.2";
src = fetchgit {
url = "https://github.com/vimeo/psalm.git";
src = fetchFromGitHub {
owner = "vimeo";
repo = "psalm";
rev = finalAttrs.version;
hash = "sha256-rRExT82+IwgVo7pL3rrTjW/qj/MJf4m4L3PywaeSHYU=";
hash = "sha256-M8Ds3PQGphK8lQciWNdxWkMN35q8vdaNTWTrP1WXTeg=";
};
# TODO: Open a PR against https://github.com/vimeo/psalm
# Missing `composer.lock` from the repository.
# Issue open at https://github.com/vimeo/psalm/issues/10446
composerLock = ./composer.lock;
vendorHash = "sha256-Vho1ri/Qm2SYeXB9ZoXvH1vB/eSBwHnAT/pI4jjUYhU=";
vendorHash = "sha256-URPyV1V/8BP8fbJqyYLf+XKG786hY2BbAzUphzPyPCs=";
meta = {
changelog = "https://github.com/vimeo/psalm/releases/tag/${finalAttrs.version}";