1
0
mirror of https://github.com/kmein/niveum synced 2026-03-18 11:01:07 +01:00
Files
niveum/overlays/toml.nix

7 lines
228 B
Nix
Raw Normal View History

2019-11-05 21:59:51 +01:00
(self: super: {
2019-11-19 07:47:44 +01:00
writeTOML = object: super.runCommand "generated.toml" {} ''
2019-11-05 21:59:51 +01:00
echo '${builtins.toJSON object}' | ${super.remarshal}/bin/json2toml > $out
'';
toTOML = object: builtins.readFile (self.writeTOML object);
})