nixos-configs/apps/update-sources/default.nix
matt1432 cdf28bd4f5
All checks were successful
Discord / discord commits (push) Has been skipped
feat(apps): type check scripts in checkPhase
2025-03-07 16:51:01 -05:00

32 lines
538 B
Nix

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