Unverified Commit db7c5d17 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #234871 from m0rg-dev/vscode-darwin-signing

vscode: disable ripgrep patching on macOS
parents 9362b60a 8769a90f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
{ stdenv, lib, callPackage, fetchurl
, isInsiders ? false
, commandLineArgs ? ""
, useVSCodeRipgrep ? false
, useVSCodeRipgrep ? stdenv.isDarwin
}:

let
+1 −1
Original line number Diff line number Diff line
{ lib, stdenv, callPackage, fetchurl, nixosTests, commandLineArgs ? "", useVSCodeRipgrep ? false }:
{ lib, stdenv, callPackage, fetchurl, nixosTests, commandLineArgs ? "", useVSCodeRipgrep ? stdenv.isDarwin }:

let
  inherit (stdenv.hostPlatform) system;