nixpkgs/pkgs/tools/misc/tfk8s/tests/sample1/default.nix
2021-07-14 09:16:04 -03:00

12 lines
209 B
Nix

{ runCommandCC, tfk8s }:
runCommandCC "tfk8s-test-sample1" {
buildInputs = [
tfk8s
];
meta.timeout = 60;
}
''
cmp <(${tfk8s}/bin/tfk8s -f ${./input.yaml}) ${./output.tf} > $out
''