tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
php.packages.php-cs-fixer: 3.11.0 -> 3.13.1
Pol Dellaiera
3 years ago
dbe4b291
7383933b
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
php-packages
php-cs-fixer
default.nix
+4
-2
pkgs/development/php-packages/php-cs-fixer/default.nix
···
1
{ mkDerivation, fetchurl, makeWrapper, lib, php }:
0
2
let
3
pname = "php-cs-fixer";
4
-
version = "3.11.0";
5
in
6
mkDerivation {
7
inherit pname version;
8
9
src = fetchurl {
10
url = "https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v${version}/php-cs-fixer.phar";
11
-
sha256 = "sha256-hnSHR/tDX1w/4SV6fafvUHg4JwTQJxfwKaKvEbUWJjs=";
12
};
13
14
dontUnpack = true;
···
25
'';
26
27
meta = with lib; {
0
28
description = "A tool to automatically fix PHP coding standards issues";
29
license = licenses.mit;
30
homepage = "https://cs.symfony.com/";
···
1
{ mkDerivation, fetchurl, makeWrapper, lib, php }:
2
+
3
let
4
pname = "php-cs-fixer";
5
+
version = "3.13.1";
6
in
7
mkDerivation {
8
inherit pname version;
9
10
src = fetchurl {
11
url = "https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v${version}/php-cs-fixer.phar";
12
+
sha256 = "4bQrCjuaWN4Dbs1tkk4m1WxSb510ue7G59HA+gQ52yk=";
13
};
14
15
dontUnpack = true;
···
26
'';
27
28
meta = with lib; {
29
+
changelog = "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/releases/tag/${version}";
30
description = "A tool to automatically fix PHP coding standards issues";
31
license = licenses.mit;
32
homepage = "https://cs.symfony.com/";