lol

php.packages.php-cs-fixer: 3.11.0 -> 3.13.1

+4 -2
+4 -2
pkgs/development/php-packages/php-cs-fixer/default.nix
··· 1 1 { mkDerivation, fetchurl, makeWrapper, lib, php }: 2 + 2 3 let 3 4 pname = "php-cs-fixer"; 4 - version = "3.11.0"; 5 + version = "3.13.1"; 5 6 in 6 7 mkDerivation { 7 8 inherit pname version; 8 9 9 10 src = fetchurl { 10 11 url = "https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v${version}/php-cs-fixer.phar"; 11 - sha256 = "sha256-hnSHR/tDX1w/4SV6fafvUHg4JwTQJxfwKaKvEbUWJjs="; 12 + sha256 = "4bQrCjuaWN4Dbs1tkk4m1WxSb510ue7G59HA+gQ52yk="; 12 13 }; 13 14 14 15 dontUnpack = true; ··· 25 26 ''; 26 27 27 28 meta = with lib; { 29 + changelog = "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases/tag/${version}"; 28 30 description = "A tool to automatically fix PHP coding standards issues"; 29 31 license = licenses.mit; 30 32 homepage = "https://cs.symfony.com/";