nixos-configs/apps/update-sources/default.nix
matt1432 d89900c4be
All checks were successful
Discord / discord commits (push) Has been skipped
feat(jmusicbot): add to update script and update pkg
2025-01-25 11:51:22 -05:00

28 lines
508 B
Nix

{
buildApp,
callPackage,
findutils,
go,
nix-update,
nodejs_latest,
prefetch-npm-deps,
...
}:
buildApp {
src = ./.;
npmDepsHash = "sha256-YYhg8FQF92JNyIJuZmkF9Ehhc0zTrwg9CppddpcLRfA=";
runtimeInputs = [
findutils
go
nix-update
nodejs_latest
prefetch-npm-deps
(callPackage ../../modules/docker/updateImage.nix {})
];
meta.description = ''
Updates all derivation sources in this repository and
generates a commit message for the changes made.
'';
}