nixos-configs/apps/update-sources/default.nix
matt1432 546eda3ee2
All checks were successful
Discord / discord commits (push) Has been skipped
feat: refactor to add apps README
2025-01-20 12:34:07 -05:00

26 lines
481 B
Nix

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