php.packages.phing: update src url

So it can be automatically updated with `nix-update`
This commit is contained in:
Pol Dellaiera 2022-12-25 20:18:05 +01:00
parent dbe4b291c6
commit d3f87fcff6
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA

View File

@ -1,4 +1,5 @@
{ mkDerivation, fetchurl, makeWrapper, lib, php }:
let
pname = "phing";
version = "2.17.4";
@ -7,7 +8,7 @@ mkDerivation {
inherit pname version;
src = fetchurl {
url = "https://www.phing.info/get/phing-${version}.phar";
url = "https://github.com/phingofficial/phing/releases/download/v${version}/phing-${version}.phar";
sha256 = "sha256-3QZsl5QJkFX5Z4RovMtw2ELCp8Zl4xiZsIBikakJ474=";
};