infrastructure/packages/deploy-qois/default.nix
Fabian Hauser 04f4afe125
Some checks failed
CI / build (push) Failing after 2m48s
Migrate packages to use callPackage pattern
2024-10-19 19:40:58 +03:00

14 lines
279 B
Nix

{
deploy-rs,
self,
writeShellApplication,
...
}:
writeShellApplication {
name = "deploy-qois";
meta.description = "Deploy configuration to specificed targets.";
runtimeInputs = [ deploy-rs ];
text = ''
deploy --interactive --targets "''${@:-${self}}"
'';
}