We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2910a7c commit b22c117Copy full SHA for b22c117
1 file changed
grammars.nix
@@ -14,7 +14,7 @@
14
&& builtins.hasAttr "rev" grammar.source;
15
isGitHubGrammar = grammar: lib.hasPrefix "https://github.com" grammar.source.git;
16
toGitHubFetcher = url: let
17
- match = builtins.match "https://github\.com/([^/]*)/([^/]*)/?" url;
+ match = builtins.match "https://github\\.com/([^/]*)/([^/]*)/?" url;
18
in {
19
owner = builtins.elemAt match 0;
20
repo = builtins.elemAt match 1;
0 commit comments