- Reformat argument list for better readability and consistency. - Update indentation and braces to align with standard conventions. No functional changes introduced.
13 lines
171 B
Nix
13 lines
171 B
Nix
{
|
|
pkgs,
|
|
craneLib,
|
|
individualCrateArgs,
|
|
}:
|
|
craneLib.buildPackage (
|
|
individualCrateArgs
|
|
// {
|
|
pname = "vault-hier";
|
|
cargoExtraArgs = "-p vault-hier";
|
|
}
|
|
)
|