robo: 4.0.7 -> 5.0.0

This commit is contained in:
Pol Dellaiera 2024-05-19 13:44:46 +02:00
parent 485125d667
commit 4dcdfe98f6
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA

View File

@ -1,21 +1,32 @@
{
lib
, php
, fetchFromGitHub
lib,
php82,
fetchFromGitHub,
fetchpatch,
}:
php.buildComposerProject (finalAttrs: {
php82.buildComposerProject (finalAttrs: {
pname = "robo";
version = "4.0.6";
version = "5.0.0";
src = fetchFromGitHub {
owner = "consolidation";
repo = "robo";
rev = finalAttrs.version;
hash = "sha256-rpCs24Q15XM4BdW1+IfysFR/8/ZU4o5b4MyJL48uDaU=";
hash = "sha256-tibG2sR5CsRnUjZEvOewX/fyMuAS1kgKjYbrkk+f0BI=";
};
vendorHash = "sha256-Ul8XjH0Nav37UVpNQslOkF2bkiyqUAEZiIbcSW2tGkQ=";
patches = [
# Fix the version number
# Most likely to remove at the next bump update
# See https://github.com/drupol/robo/pull/1
(fetchpatch {
url = "https://github.com/drupol/robo/commit/c3cd001525c1adb5980a3a18a5561a0a5bbe1f50.patch";
hash = "sha256-iMdZx+Bldmf1IS6Ypoet7GSsE6J9ZnE0HTskznkyEKM=";
})
];
vendorHash = "sha256-RRnHv6sOYm8fYhY3Q6m5sFDflFXd9b9LPcAqk/D1jdE=";
meta = {
changelog = "https://github.com/consolidation/robo/blob/${finalAttrs.version}/CHANGELOG.md";