File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
pkgs/by-name/ro/roave-backward-compatibility-check Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
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
+ } )
You can’t perform that action at this time.
0 commit comments