1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00
Files
niveum/lib/default.nix

8 lines
234 B
Nix
Raw Normal View History

2020-06-10 17:37:25 +02:00
{ pkgs, ... }: rec {
writeTOML = object:
pkgs.runCommand "generated.toml" { } ''
echo '${builtins.toJSON object}' | ${pkgs.remarshal}/bin/json2toml > $out
'';
2020-05-20 00:06:26 +02:00
toTOML = object: builtins.readFile (writeTOML object);
}