31 lines
480 B
Nix
Raw Normal View History

2025-12-14 13:44:56 -05:00
# unpackPhase
# patchPhase
# configurePhase
# buildPhase
# checkPhase
# installPhase
# fixupPhase
# installCheckPhase
# distPhase
{
stdenv,
writeShellScript,
2025-12-14 13:44:56 -05:00
k8s,
...
}:
let
deploy_script_body = "";
deploy_script = (writeShellScript "deploy-script" deploy_script_body);
in
2025-12-14 13:44:56 -05:00
stdenv.mkDerivation (finalAttrs: {
name = "deploy-script";
nativeBuildInputs = [ ];
2025-12-14 13:44:56 -05:00
buildInputs = [ ];
unpackPhase = "true";
installPhase = ''
cp ${deploy_script} "$out"
2025-12-14 13:44:56 -05:00
'';
})