mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #36185 from etu/php-utils-upgrades
Upgrades of some userspace utils for PHP
This commit is contained in:
commit
e340a984e4
1 changed files with 10 additions and 10 deletions
|
@ -328,11 +328,11 @@ let
|
|||
|
||||
composer = pkgs.stdenv.mkDerivation rec {
|
||||
name = "composer-${version}";
|
||||
version = "1.6.2";
|
||||
version = "1.6.3";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://getcomposer.org/download/${version}/composer.phar";
|
||||
sha256 = "0xjjnbpzar6ybpad77r0b4a96bwrayza8s1s9vz6s634ir98dhvf";
|
||||
sha256 = "1dna9ng77nw002l7hq60b6vz0f1snmnsxj1l7cg4f877msxppjsj";
|
||||
};
|
||||
|
||||
unpackPhase = ":";
|
||||
|
@ -410,13 +410,13 @@ let
|
|||
|
||||
php-parallel-lint = pkgs.stdenv.mkDerivation rec {
|
||||
name = "php-parallel-lint-${version}";
|
||||
version = "0.9.2";
|
||||
version = "1.0.0";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "JakubOnderka";
|
||||
repo = "PHP-Parallel-Lint";
|
||||
rev = "v${version}";
|
||||
sha256 = "0dzyi6arwpwbjgr366vw3qxibc3naq863p75q433ahznbdygzzm1";
|
||||
sha256 = "16nv8yyk2z3l213dg067l6di4pigg5rd8yswr5xgd18jwbys2vnw";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgs.makeWrapper composer box ];
|
||||
|
@ -443,11 +443,11 @@ let
|
|||
|
||||
phpcs = pkgs.stdenv.mkDerivation rec {
|
||||
name = "phpcs-${version}";
|
||||
version = "2.6.0";
|
||||
version = "3.2.3";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${version}/phpcs.phar";
|
||||
sha256 = "02mlv44x508rnkzkwiyh7lg2ah7aqyxcq65q9ycj06czm0xdzs41";
|
||||
sha256 = "193axz56j1kyq458q0y38m99bx31jjjldfg6bv71vgm6zh4rvvs1";
|
||||
};
|
||||
|
||||
phases = [ "installPhase" ];
|
||||
|
@ -464,17 +464,17 @@ let
|
|||
description = "PHP coding standard tool";
|
||||
license = licenses.bsd3;
|
||||
homepage = https://squizlabs.github.io/PHP_CodeSniffer/;
|
||||
maintainers = with maintainers; [ javaguirre ];
|
||||
maintainers = with maintainers; [ javaguirre etu ];
|
||||
};
|
||||
};
|
||||
|
||||
phpcbf = pkgs.stdenv.mkDerivation rec {
|
||||
name = "phpcbf-${version}";
|
||||
version = "2.6.0";
|
||||
version = "3.2.3";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${version}/phpcbf.phar";
|
||||
sha256 = "1ijf52cgd85ypvw431nnmzij6156ryhfvmajpkr7plfw0iccqc5j";
|
||||
sha256 = "00p0l01shxx1h6g26j2dbfrp9j7im541das4xps4wrsvc4h4da9l";
|
||||
};
|
||||
|
||||
phases = [ "installPhase" ];
|
||||
|
@ -491,7 +491,7 @@ let
|
|||
description = "PHP coding standard beautifier and fixer";
|
||||
license = licenses.bsd3;
|
||||
homepage = https://squizlabs.github.io/PHP_CodeSniffer/;
|
||||
maintainers = with maintainers; [ cmcdragonkai ];
|
||||
maintainers = with maintainers; [ cmcdragonkai etu ];
|
||||
};
|
||||
};
|
||||
}; in self
|
||||
|
|
Loading…
Reference in a new issue