mirror of
https://codeberg.org/icewind/flakelight-php.git
synced 2026-06-03 18:04:10 +02:00
18 lines
324 B
Nix
18 lines
324 B
Nix
{
|
|
callPackage,
|
|
php,
|
|
majorVersion,
|
|
testDependencies,
|
|
writeShellApplication,
|
|
}: let
|
|
unwrapped = callPackage ../pkgs/phpunit.nix {
|
|
inherit php majorVersion;
|
|
};
|
|
in
|
|
writeShellApplication {
|
|
name = "phpunit";
|
|
runtimeInputs = [unwrapped] ++ testDependencies;
|
|
text = ''
|
|
phpunit "$@"
|
|
'';
|
|
}
|