nixos-configs/apps/update-sources/default.nix
matt1432 2f372718fb
All checks were successful
Discord / discord commits (push) Has been skipped
fix(npm): pin typescript to 5.7.3
2025-03-02 13:46:50 -05:00

32 lines
538 B
Nix

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