nixpkgs-odroid-hc4/pkgs/tools/misc/tfk8s/tests/sample1/default.nix
2025-12-20 09:59:59 +11:00

11 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
''