Migrate packages to use callPackage pattern
Some checks failed
CI / build (push) Failing after 2m48s

This commit is contained in:
Fabian Hauser 2024-10-19 19:40:58 +03:00
parent 478b8903e0
commit 04f4afe125
11 changed files with 91 additions and 60 deletions

View file

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