Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7e743a0f2918
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6b41eb10ca73
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 4, 2020

  1. Copy the full SHA
    f5adeda View commit details
  2. Merge pull request #102747 from r-ryantm/auto-update/php-php-cs-fixer

    php73Packages.php-cs-fixer: 2.16.4 -> 2.16.7
    etu authored Nov 4, 2020
    Copy the full SHA
    6b41eb1 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/php-packages/php-cs-fixer/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/php-packages/php-cs-fixer/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ mkDerivation, fetchurl, pkgs, lib, php }:
let
pname = "php-cs-fixer";
version = "2.16.4";
version = "2.16.7";
in
mkDerivation {
inherit pname version;

src = fetchurl {
url = "https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v${version}/php-cs-fixer.phar";
sha256 = "05rdvypxc86hjs8b7id2csa7g1rf7dk2swzfvd5768abdgfasvr8";
sha256 = "1azivqvgqy224g2ch9v9qgi31w4ml7fph3bsk8c304yvbvvfv5nh";
};

phases = [ "installPhase" ];