Skip to content

Commit 1cfee33

Browse files
authored
Merge pull request #313907 from drupol/init/php/roave-backward-compatibility-check-8-8-0
roave-backward-compatibility-check: init at 8.8.0
2 parents ad667f0 + f70ed7a commit 1cfee33

File tree

1 file changed

+37
-0
lines changed
  • pkgs/by-name/ro/roave-backward-compatibility-check

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
lib,
3+
fetchFromGitHub,
4+
php,
5+
testers,
6+
roave-backward-compatibility-check,
7+
}:
8+
9+
php.buildComposerProject (finalAttrs: {
10+
pname = "roave-backward-compatibility-check";
11+
version = "8.8.0";
12+
13+
src = fetchFromGitHub {
14+
owner = "Roave";
15+
repo = "BackwardCompatibilityCheck";
16+
rev = finalAttrs.version;
17+
hash = "sha256-/9nJqZcuBLzgzDyoX4NHW9And7L/F+Bsm/gLzQS7QzE=";
18+
};
19+
20+
vendorHash = "sha256-I8JZ4CBrrQmZ38QF9SPZtkPirCAxqSCeTUpMg59Mz7U=";
21+
22+
passthru = {
23+
tests.version = testers.testVersion {
24+
package = roave-backward-compatibility-check;
25+
version = finalAttrs.version;
26+
};
27+
};
28+
29+
meta = {
30+
changelog = "https://github.com/Roave/BackwardCompatibilityCheck/releases/tag/${finalAttrs.version}";
31+
description = "A tool that can be used to verify BC breaks between two versions of a PHP library";
32+
homepage = "https://github.com/Roave/BackwardCompatibilityCheck";
33+
license = lib.licenses.mit;
34+
mainProgram = "roave-backward-compatibility-check";
35+
maintainers = lib.teams.php.members;
36+
};
37+
})

0 commit comments

Comments
 (0)