nixos-configs/apps/update-sources/default.nix
matt1432 1c8b80283e
All checks were successful
Discord / discord commits (push) Has been skipped
fix(update): get latest tag instead of release for grosshack
2025-02-15 11:55:05 -05:00

32 lines
538 B
Nix

{
buildApp,
callPackage,
curl,
findutils,
go,
jq,
nix-update,
nodejs_latest,
prefetch-npm-deps,
...
}:
buildApp {
src = ./.;
npmDepsHash = "sha256-2cWxVTCOEJOg2eBv+xX/mvr6MUX+UJQ8JlkoObD6+Uc=";
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.
'';
}