about summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-12-18 08:10:32 +0100
committerGitHub <noreply@github.com>2023-12-18 08:10:32 +0100
commitef9561119e641006acce3f5f034a14637da5419f (patch)
treef83dc1dddb33e71a207aafdf12f7a1f0ca4bb156 /pkgs/development/web
parent0ef5737dd73181d5dbe989a6ea73ef86fc965970 (diff)
parentbb74ebb72bb621a03313107f1d32401493b3c438 (diff)
downloadnixlib-ef9561119e641006acce3f5f034a14637da5419f.tar
nixlib-ef9561119e641006acce3f5f034a14637da5419f.tar.gz
nixlib-ef9561119e641006acce3f5f034a14637da5419f.tar.bz2
nixlib-ef9561119e641006acce3f5f034a14637da5419f.tar.lz
nixlib-ef9561119e641006acce3f5f034a14637da5419f.tar.xz
nixlib-ef9561119e641006acce3f5f034a14637da5419f.tar.zst
nixlib-ef9561119e641006acce3f5f034a14637da5419f.zip
Merge pull request #274477 from phaer/playwright-cacert
playwright-driver: fix browser download on darwin
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/playwright/driver.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/web/playwright/driver.nix b/pkgs/development/web/playwright/driver.nix
index 2ced22b559a0..7f755eda21ce 100644
--- a/pkgs/development/web/playwright/driver.nix
+++ b/pkgs/development/web/playwright/driver.nix
@@ -11,6 +11,7 @@
 , makeWrapper
 , runCommand
 , unzip
+, cacert
 }:
 let
   inherit (stdenv.hostPlatform) system;
@@ -86,6 +87,10 @@ let
 
     dontUnpack = true;
 
+    nativeBuildInputs = [
+      cacert
+    ];
+
     installPhase = ''
       runHook preInstall