summaryrefslogtreecommitdiffstats
path: root/pkgs/development/php-packages
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/php-packages')
-rw-r--r--pkgs/development/php-packages/phpcbf/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/php-packages/phpcbf/default.nix b/pkgs/development/php-packages/phpcbf/default.nix
index 1cc6f46bd09d..9a85a5ec47d3 100644
--- a/pkgs/development/php-packages/phpcbf/default.nix
+++ b/pkgs/development/php-packages/phpcbf/default.nix
@@ -1,14 +1,15 @@
{ mkDerivation, fetchurl, lib, php, makeWrapper }:
+
let
pname = "phpcbf";
- version = "3.6.0";
+ version = "3.7.1";
in
mkDerivation {
inherit pname version;
src = fetchurl {
url = "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${version}/phpcbf.phar";
- sha256 = "04wb1imm4934mpy2hxcmqh4cn7md1vwmfii39p6mby809325b5z1";
+ sha256 = "sha256-yTwOg8vaIcIfhJzPD0tCl50gAEpaYXLtDqJw7Keub6g=";
};
dontUnpack = true;
@@ -25,6 +26,7 @@ mkDerivation {
'';
meta = with lib; {
+ changelog = "https://github.com/squizlabs/PHP_CodeSniffer/releases/tag/${version}";
description = "PHP coding standard beautifier and fixer";
license = licenses.bsd3;
homepage = "https://squizlabs.github.io/PHP_CodeSniffer/";