about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--external/default.nix12
1 files changed, 11 insertions, 1 deletions
diff --git a/external/default.nix b/external/default.nix
index 5854d4f027..f9cb542e6f 100644
--- a/external/default.nix
+++ b/external/default.nix
@@ -3,7 +3,17 @@
 { pkgs, program, package }:
 
 let
-  inherit (builtins) elemAt foldl' fromJSON head length readFile replaceStrings tail throw;
+  inherit (builtins)
+    elemAt
+    foldl'
+    fromJSON
+    head
+    length
+    readFile
+    replaceStrings
+    tail
+    throw;
+
   inherit (pkgs) lib runCommand go jq ripgrep;
 
   pathToName = p: replaceStrings ["/"] ["_"] (toString p);