network/nix/salt-support/expand-template.nix

16 lines
286 B
Nix
Raw Normal View History

2021-02-25 01:06:32 +01:00
{ pkgs ? import <nixpkgs> {}
}:
name: template: data:
let
jsonFile =
builtins.toFile "data.json" (builtins.toJSON data);
in
pkgs.runCommandLocal name {
nativeBuildInputs = with pkgs; [
pythonPackages.j2cli yaml2json
];
} ''
j2 -f json ${template} ${jsonFile} > $out
''