bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
27 lines
654 B
Nix
27 lines
654 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, php
|
|
}:
|
|
|
|
php.buildComposerProject (finalAttrs: {
|
|
pname = "n98-magerun2";
|
|
version = "7.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "netz98";
|
|
repo = "n98-magerun2";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-OPvyZ0r7Zt4PC+rmRtBm9EkbaE4PeovnUHrhzXUqT8E=";
|
|
};
|
|
|
|
vendorHash = "sha256-HSkcYbDQPK1ByG8Euq9YqzK0jqjKrWO+0R4ungFDOIY=";
|
|
|
|
meta = {
|
|
changelog = "https://magerun.net/category/magerun/";
|
|
description = "Swiss army knife for Magento2 developers";
|
|
homepage = "https://magerun.net/";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "n98-magerun2";
|
|
maintainers = lib.teams.php.members;
|
|
};
|
|
})
|