Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
728 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
php,
fetchFromGitHub,
}:
php.buildComposerProject2 (finalAttrs: {
pname = "deployer";
version = "7.5.12";
src = fetchFromGitHub {
owner = "deployphp";
repo = "deployer";
rev = "7b108897baa94b8ac438c821ec1fb815d95eba77";
hash = "sha256-wtkixHexsJNKsLnnlHssh0IzxwWYMPKDcaf/D0zUNKk=";
};
vendorHash = "sha256-0uBI30n31W0eDVA9/W366O0Qo2jWZBqEL+YbJx4J7P0=";
meta = {
changelog = "https://github.com/deployphp/deployer/releases/tag/v${finalAttrs.version}";
description = "PHP deployment tool with support for popular frameworks out of the box";
homepage = "https://deployer.org/";
license = lib.licenses.mit;
mainProgram = "dep";
teams = [ lib.teams.php ];
};
})