Merge pull request #255249 from NixOS/robo/init-at-4-0-4

robo: init at 4.0.4
This commit is contained in:
Elis Hirwing 2023-09-17 15:12:27 +02:00 committed by GitHub
commit 0fcc8aaa80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 ];
};
})