From 8556a98d15c4aab09d239fd24e645144fb09c3e3 Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Tue, 16 May 2023 18:54:24 +0200 Subject: [PATCH] arcanist: 20220517 -> 20230401, switch to PHP 8.1 It seems that most issues related to PHP 8.1 have been fixed according to the issue tracker. --- pkgs/development/tools/misc/arcanist/default.nix | 8 ++++---- pkgs/top-level/all-packages.nix | 3 +-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/misc/arcanist/default.nix b/pkgs/development/tools/misc/arcanist/default.nix index 178bb9b3d059..74022bf0ccd5 100644 --- a/pkgs/development/tools/misc/arcanist/default.nix +++ b/pkgs/development/tools/misc/arcanist/default.nix @@ -25,13 +25,13 @@ let makeArcWrapper = toolset: '' in stdenv.mkDerivation { pname = "arcanist"; - version = "20220517"; + version = "20230401"; src = fetchFromGitHub { owner = "phacility"; repo = "arcanist"; - rev = "85c953ebe4a6fef332158fd757d97c5a58682d3a"; - sha256 = "0x847fw74mzrbhzpgc4iqgvs6dsf4svwfa707dsbxi78fn2lxbl7"; + rev = "0fc22183e796fb8ac2e3a0a3f3f37aa964c6d7fa"; + hash = "sha256-DPq0SJTOUzQFo6r/o5R0rS9FPaKebWYxaOd1Ocn7Ic8="; }; patches = [ @@ -80,7 +80,7 @@ stdenv.mkDerivation { meta = { description = "Command line interface to Phabricator"; - homepage = "http://phabricator.org"; + homepage = "https://www.phacility.com/"; license = lib.licenses.asl20; platforms = lib.platforms.unix; maintainers = [ lib.maintainers.thoughtpolice ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dea38435f0a3..721e09a065e3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2835,8 +2835,7 @@ with pkgs; arangodb = callPackage ../servers/nosql/arangodb { }; - # arcanist currently crashes with some workflows on php8.1, use 8.0 - arcanist = callPackage ../development/tools/misc/arcanist { php = php80; }; + arcanist = callPackage ../development/tools/misc/arcanist { php = php81; }; arduino = arduino-core.override { withGui = true; };