about summary refs log tree commit diff
path: root/pkgs/tools/security/enpass
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@sap.com>2021-11-03 13:43:23 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-11-03 14:43:52 +0100
commit8547db919a05c86fe724b972b3130f305d6f4267 (patch)
treee32513b8699ad0fc393245b6528d867065787b01 /pkgs/tools/security/enpass
parentc463cb880c4e85e116192d1e4a1c9bdf0072da1d (diff)
treewide: switch ``builtins.fromJSON(builtins.readFile ./file.json)`` to lib.importJSON ./file.json
Diffstat (limited to 'pkgs/tools/security/enpass')
-rw-r--r--pkgs/tools/security/enpass/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/security/enpass/default.nix b/pkgs/tools/security/enpass/default.nix
index 63f25bc12efea..7cbbaee458203 100644
--- a/pkgs/tools/security/enpass/default.nix
+++ b/pkgs/tools/security/enpass/default.nix
@@ -6,7 +6,7 @@
 }:
 
 let
-  all_data = builtins.fromJSON (builtins.readFile ./data.json);
+  all_data = lib.importJSON ./data.json;
   system_map = {
     # i686-linux = "i386"; Uncomment if enpass 6 becomes available on i386
     x86_64-linux = "amd64";