nixos-configs/apps/update-sources/default.nix
matt1432 55ddcfecea
All checks were successful
Discord / discord commits (push) Has been skipped
feat(update): improve error handling and fix problems with node_modules
2025-01-22 12:10:36 -05:00

28 lines
508 B
Nix

{
buildApp,
callPackage,
findutils,
go,
nix-update,
nodejs_latest,
prefetch-npm-deps,
...
}:
buildApp {
src = ./.;
npmDepsHash = "sha256-k4m8fSF0zOznebbH87p8IPP2SzRR9siVFYBU5Cfs2T0=";
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.
'';
}