about summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2023-12-01 18:26:05 +0100
committerPol Dellaiera <pol.dellaiera@protonmail.com>2023-12-01 18:30:39 +0100
commit3994688356e7ea9f6eec912a8e550b67d26f8300 (patch)
tree113f1890e1c4e7a5e6b17a60624870f95e3a9be6 /pkgs/development/tools/misc
parent49a204d40e716c4dfff411613dad75ebf205b111 (diff)
phpunit: 10.5.0 -> 10.5.1
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/phpunit/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/development/tools/misc/phpunit/default.nix b/pkgs/development/tools/misc/phpunit/default.nix
deleted file mode 100644
index 9690e87fc532b..0000000000000
--- a/pkgs/development/tools/misc/phpunit/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ lib, fetchFromGitHub, php }:
-
-php.buildComposerProject (finalAttrs: {
-  pname = "phpunit";
-  version = "10.5.0";
-
-  src = fetchFromGitHub {
-    owner = "sebastianbergmann";
-    repo = "phpunit";
-    rev = finalAttrs.version;
-    hash = "sha256-CpgYMUJE7c2eRBYkK/vMRdGgzY7Y7K/wMmyUH+Bssjs=";
-  };
-
-  vendorHash = "sha256-uUdgz3ZZ+3nU07pUC1sdkNgU1b1beo3sS/yySUzdZwU=";
-
-  meta = {
-    changelog = "https://github.com/sebastianbergmann/phpunit/blob/${finalAttrs.version}/ChangeLog-${lib.versions.majorMinor finalAttrs.version}.md";
-    description = "PHP Unit Testing framework";
-    homepage = "https://phpunit.de";
-    license = lib.licenses.bsd3;
-    maintainers = [ lib.maintainers.onny ] ++ lib.teams.php.members;
-  };
-})