mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
php,
|
|
testers,
|
|
roave-backward-compatibility-check,
|
|
}:
|
|
|
|
php.buildComposerProject (finalAttrs: {
|
|
pname = "roave-backward-compatibility-check";
|
|
version = "8.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Roave";
|
|
repo = "BackwardCompatibilityCheck";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-/9nJqZcuBLzgzDyoX4NHW9And7L/F+Bsm/gLzQS7QzE=";
|
|
};
|
|
|
|
vendorHash = "sha256-I8JZ4CBrrQmZ38QF9SPZtkPirCAxqSCeTUpMg59Mz7U=";
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
package = roave-backward-compatibility-check;
|
|
version = finalAttrs.version;
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/Roave/BackwardCompatibilityCheck/releases/tag/${finalAttrs.version}";
|
|
description = "A tool that can be used to verify BC breaks between two versions of a PHP library";
|
|
homepage = "https://github.com/Roave/BackwardCompatibilityCheck";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "roave-backward-compatibility-check";
|
|
maintainers = lib.teams.php.members;
|
|
};
|
|
})
|