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: 14108cfdb2a3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cd6da66d439f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 4, 2020

  1. Copy the full SHA
    27a32ad View commit details
  2. Merge pull request #102702 from r-ryantm/auto-update/php-psalm

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

src = fetchurl {
url = "https://github.com/vimeo/psalm/releases/download/${version}/psalm.phar";
sha256 = "1ani0907whqy2ycr01sjlvrmwps4dg5igim8z1qyv8grhwvw6gb0";
sha256 = "1mpbw9q0fgh6vdfwsm222fz1vi9jrw6l5k1mz4gyv5kxvbyzmn4c";
};

phases = [ "installPhase" ];