Skip to content

Commit

Permalink
fix(v1.86.0): pin connor4312/picomatch
Browse files Browse the repository at this point in the history
  • Loading branch information
willruggiano committed Jan 24, 2024
1 parent fdcbdd3 commit bb35dc3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
config,
dream2nix,
lib,
...
}: {
imports = [
Expand All @@ -18,10 +19,19 @@
deps = {nixpkgs, ...}: {
inherit
(nixpkgs)
fetchFromGitHub
libsecret
pkg-config
stdenv
;

# https://github.com/microsoft/vscode-js-debug/commit/f33da847503857454d2abc6f35e72a9722115b46
picomatch = nixpkgs.fetchFromGitHub {
owner = "connor4312";
repo = "picomatch";
rev = "2fbe90b12eafa7dde816ff8c16be9e77271b0e0b";
hash = "sha256-NWVzzTlGfyXG/N0z7wy3oZDjuGZ1uQHfwT/EEKGp73Q=";
};
};

nodejs-granular-v3 = {
Expand All @@ -32,6 +42,11 @@
buildInputs = [config.deps.libsecret];
};
};
picomatch."2.3.1" = {
mkDerivation = {
src = lib.mkForce config.deps.picomatch;
};
};
playwright."1.26.0" = {
env.PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD = 1;
};
Expand Down

0 comments on commit bb35dc3

Please sign in to comment.