nixos-configs/apps/update-sources/default.nix

29 lines
508 B
Nix
Raw Normal View History

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