mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
30 lines
732 B
Nix
30 lines
732 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
php,
|
|
}:
|
|
|
|
php.buildComposerProject (finalAttrs: {
|
|
pname = "phpinsights";
|
|
version = "2.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nunomaduro";
|
|
repo = "phpinsights";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-7ATlfAlCFv78JSKg5cD/VcYoq/EAM/6/GjH3lkfVCJ8=";
|
|
};
|
|
|
|
vendorHash = "sha256-MOq7xmX8wqDk9W3M2gkejyXXPTcVFFgU0ohmDpL0Tvg=";
|
|
|
|
composerLock = ./composer.lock;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/nunomaduro/phpinsights/releases/tag/v${finalAttrs.version}";
|
|
description = "Instant PHP quality checks from your console";
|
|
homepage = "https://phpinsights.com/";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "phpinsights";
|
|
maintainers = [ ];
|
|
};
|
|
})
|