robo: init at 4.0.4

This commit is contained in:
Pol Dellaiera 2023-09-15 10:47:57 +02:00
parent ace5093e36
commit 7733b261ef
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA

View File

@ -0,0 +1,28 @@
{
lib
, php
, fetchFromGitHub
}:
php.buildComposerProject (finalAttrs: {
pname = "robo";
version = "4.0.4";
src = fetchFromGitHub {
owner = "consolidation";
repo = "robo";
rev = finalAttrs.version;
hash = "sha256-4sQc3ec34F5eBy9hquTqmzUgvFCTlml3LJdP39gPim4=";
};
vendorHash = "sha256-QX7AFtW6Vm9P0ABOuTs1U++nvWBzpvtxhTbK40zDYqc=";
meta = {
changelog = "https://github.com/consolidation/robo/blob/${finalAttrs.version}/CHANGELOG.md";
description = "Modern task runner for PHP";
homepage = "https://github.com/consolidation/robo";
license = lib.licenses.mit;
mainProgram = "robo";
maintainers = with lib.maintainers; [ drupol ];
};
})