2024-01-02 11:29:13 +00:00
|
|
|
{ lib, php82, fetchFromGitHub }:
|
2023-01-11 07:51:40 +00:00
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
php82.buildComposerProject (finalAttrs: {
|
2020-10-16 20:44:37 +00:00
|
|
|
pname = "box";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "4.6.0";
|
2020-10-16 20:44:37 +00:00
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "box-project";
|
|
|
|
repo = "box";
|
|
|
|
rev = finalAttrs.version;
|
2024-01-02 11:29:13 +00:00
|
|
|
hash = "sha256-s3FnpfKWmsLLXwa/xI80NZ1030fB9LcrMVzNWGeFkn4=";
|
2020-10-16 20:44:37 +00:00
|
|
|
};
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
vendorHash = "sha256-t1DvlcgTSq4n8xVUMcEIfs5ZAq9XIqL3qUqabheVVrs=";
|
2021-08-05 21:33:18 +00:00
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
meta = {
|
|
|
|
changelog = "https://github.com/box-project/box/releases/tag/${finalAttrs.version}";
|
2020-10-16 20:44:37 +00:00
|
|
|
description = "An application for building and managing Phars";
|
2022-05-18 14:49:53 +00:00
|
|
|
homepage = "https://github.com/box-project/box";
|
2023-11-16 04:20:00 +00:00
|
|
|
license = lib.licenses.mit;
|
2023-10-09 19:29:22 +00:00
|
|
|
mainProgram = "box";
|
2023-11-16 04:20:00 +00:00
|
|
|
maintainers = lib.teams.php.members;
|
2020-10-16 20:44:37 +00:00
|
|
|
};
|
2023-10-09 19:29:22 +00:00
|
|
|
})
|