2024-11-15 13:39:20 -05:00
|
|
|
{
|
|
|
|
buildApp,
|
|
|
|
callPackage,
|
2024-12-29 01:28:33 -05:00
|
|
|
go,
|
2024-12-21 05:57:56 -05:00
|
|
|
nix-update,
|
2024-11-30 03:44:34 -05:00
|
|
|
nodejs_latest,
|
2024-11-30 17:59:44 -05:00
|
|
|
prefetch-npm-deps,
|
2024-11-15 13:39:20 -05:00
|
|
|
...
|
|
|
|
}:
|
|
|
|
buildApp {
|
|
|
|
src = ./.;
|
2025-01-19 00:45:29 -05:00
|
|
|
npmDepsHash = "sha256-k4m8fSF0zOznebbH87p8IPP2SzRR9siVFYBU5Cfs2T0=";
|
2024-11-15 13:39:20 -05:00
|
|
|
|
|
|
|
runtimeInputs = [
|
2024-12-29 01:28:33 -05:00
|
|
|
go
|
2024-12-21 05:57:56 -05:00
|
|
|
nix-update
|
2024-11-30 03:44:34 -05:00
|
|
|
nodejs_latest
|
2024-11-30 17:59:44 -05:00
|
|
|
prefetch-npm-deps
|
2024-12-16 15:51:41 -05:00
|
|
|
(callPackage ../../modules/docker/updateImage.nix {})
|
2024-11-15 13:39:20 -05:00
|
|
|
];
|
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.
|
|
|
|
'';
|
2024-11-15 13:39:20 -05:00
|
|
|
}
|