nixpkgs/pkgs/tools/misc/tfk8s/tests/sample1/default.nix

12 lines
209 B
Nix
Raw Normal View History

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