nixfmt-rfc-style

There is nothing in this commit except for the changes made by
nix-shell -p nixfmt-rfc-style --run "nixfmt ."

If this has mucked up your open branches then sorry about that. You
can probably nixfmt them to match before merging
This commit is contained in:
Daniel Barlow
2025-02-10 21:55:08 +00:00
parent 13cc5a8992
commit 7e2b0068e6
211 changed files with 6049 additions and 4355 deletions

View File

@@ -1,45 +1,56 @@
{ writeText, lib }:
let
inherit (lib.attrsets) mapAttrsToList;
visit = prefix: attrset:
visit =
prefix: attrset:
let
qprint = msg : builtins.replaceStrings
["\n" "=" "\"" "$" ]
["=0A" "=3D" "=22" "=24"]
msg;
l =
mapAttrsToList
(filename: {
type ? "f"
, mode ? null
, target ? null
, contents ? null
, file ? null
, major ? null
, minor ? null
, uid ? 0
, gid ? 0
}:
let
mode' = if mode != null then mode else
(if type == "d" then "0755" else "0644");
pathname = "${prefix}/${filename}";
line = "${pathname} ${type} ${mode'} ${toString uid} ${toString gid}";
in
if type == "f" then
"${line} echo -n \"${qprint file}\" |qprint -d"
else if type == "d" then
(visit pathname contents) + "\n" + line
else if type == "c" then "${line} ${major} ${minor}"
else if type == "b" then "${line} ${major} ${minor}"
else if type == "s" then "${line} ${target}"
else if type == "l" then "${pathname} l ${target}"
else if type == "i" then "${line} f"
else line)
attrset;
in builtins.concatStringsSep "\n" l;
in {
write = filename : attrset : writeText filename (visit "" attrset);
dir = contents: { type = "d"; inherit contents; };
symlink = target: { type = "s"; inherit target; };
qprint = msg: builtins.replaceStrings [ "\n" "=" "\"" "$" ] [ "=0A" "=3D" "=22" "=24" ] msg;
l = mapAttrsToList (
filename:
{
type ? "f",
mode ? null,
target ? null,
contents ? null,
file ? null,
major ? null,
minor ? null,
uid ? 0,
gid ? 0,
}:
let
mode' = if mode != null then mode else (if type == "d" then "0755" else "0644");
pathname = "${prefix}/${filename}";
line = "${pathname} ${type} ${mode'} ${toString uid} ${toString gid}";
in
if type == "f" then
"${line} echo -n \"${qprint file}\" |qprint -d"
else if type == "d" then
(visit pathname contents) + "\n" + line
else if type == "c" then
"${line} ${major} ${minor}"
else if type == "b" then
"${line} ${major} ${minor}"
else if type == "s" then
"${line} ${target}"
else if type == "l" then
"${pathname} l ${target}"
else if type == "i" then
"${line} f"
else
line
) attrset;
in
builtins.concatStringsSep "\n" l;
in
{
write = filename: attrset: writeText filename (visit "" attrset);
dir = contents: {
type = "d";
inherit contents;
};
symlink = target: {
type = "s";
inherit target;
};
}