summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2023-04-15 04:10:16 +0200
committerPol Dellaiera <pol.dellaiera@protonmail.com>2023-07-10 09:51:11 +0200
commitc12f31dbafee998f55e63a81d4e971be772dfaf3 (patch)
tree3d56f67e0198c84e24d439f08233fc7872001cd5
parentphpPackages.composer: use `buildComposerProject` builder (diff)
downloadnixpkgs-c12f31dbafee998f55e63a81d4e971be772dfaf3.tar.gz
drush-launcher: init at 0.10.2
-rw-r--r--pkgs/development/tools/misc/drush-launcher/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/drush-launcher/default.nix b/pkgs/development/tools/misc/drush-launcher/default.nix
new file mode 100644
index 000000000000..3646b8127186
--- /dev/null
+++ b/pkgs/development/tools/misc/drush-launcher/default.nix
@@ -0,0 +1,22 @@
+{ lib, fetchFromGitHub, php }:
+
+php.buildComposerProject (finalAttrs: {
+ pname = "drush-launcher";
+ version = "0.10.2";
+
+ src = fetchFromGitHub {
+ owner = "drush-ops";
+ repo = "drush-launcher";
+ rev = finalAttrs.version;
+ sha256 = "sha256-bJaKDu5iNSI+QOCY2cZEVSsV0lSOkLB1eQ9Y9CRU7Pc=";
+ };
+
+ vendorHash = "sha256-wplVho3pbxOrUwWzmnt0atZcIzU9BpHAqbr6mjCb/3A=";
+
+ meta = with lib; {
+ description = "Command-line shell and Unix scripting interface for Drupal";
+ homepage = "https://github.com/drush-ops/drush";
+ license = licenses.gpl2;
+ maintainers = teams.php.members;
+ };
+})