chore: Fix formatting

This commit is contained in:
Donovan Glover 2024-04-01 15:29:40 -04:00
parent c33ff6bd5e
commit d21ae69f39
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 12 additions and 12 deletions

View File

@ -65,7 +65,7 @@
attributeValue = (builtins.listToAttrs
(builtins.map
(file: {
name = builtins.replaceStrings [".nix"] [""] file;
name = builtins.replaceStrings [ ".nix" ] [ "" ] file;
value = if directory == packageDirectory then callPackage ./${directory}/${file} { } else import ./${directory}/${file}; })
(builtins.attrNames (builtins.readDir ./${directory}))));
attributeSet = if directory == packageDirectory then { x86_64-linux = attributeValue; } else attributeValue;