tlaternet-webserver/nix/update.nix

15 lines
246 B
Nix
Raw Normal View History

2023-01-19 07:59:58 +00:00
{
writeShellApplication,
cargo,
git,
nix,
npm,
npm-check-updates,
yq-go,
}:
writeShellApplication {
name = "update";
runtimeInputs = [cargo git nix npm npm-check-updates yq-go];
text = builtins.readFile ./scripts/update.sh;
}