mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
7 lines
228 B
Nix
7 lines
228 B
Nix
(self: super: {
|
|
writeTOML = object: super.runCommand "generated.toml" {} ''
|
|
echo '${builtins.toJSON object}' | ${super.remarshal}/bin/json2toml > $out
|
|
'';
|
|
toTOML = object: builtins.readFile (self.writeTOML object);
|
|
})
|