Migrate packages to use callPackage pattern
All checks were successful
CI / build (push) Successful in 2m46s
All checks were successful
CI / build (push) Successful in 2m46s
This commit is contained in:
parent
478b8903e0
commit
15ece3585e
11 changed files with 92 additions and 62 deletions
14
packages/deploy-qois/default.nix
Normal file
14
packages/deploy-qois/default.nix
Normal 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}}"
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue