mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
robo: init at 4.0.4
This commit is contained in:
parent
ace5093e36
commit
7733b261ef
28
pkgs/by-name/ro/robo/package.nix
Normal file
28
pkgs/by-name/ro/robo/package.nix
Normal 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 ];
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue