Flake Inputs: • Updated input 'home-manager': 'github:nix-community/home-manager' (2025-04-25) rev: 542078066b1a99cdc5d5fce1365f98b847ca0b5a → 'github:nix-community/home-manager' (2025-04-26) rev: 4d2d32231797bfa7213ae5e8ac89d25f8caaae82 • Updated input 'nixcord': 'github:kaylorben/nixcord' (2025-04-25) rev: f5dd48df2e39d2b2cf9b5bad20997e88704f6a5e → 'github:kaylorben/nixcord' (2025-04-26) rev: 6e715560690b7fe746a398107fb34037263eea09 • Updated input 'nixpkgs': 'git+https://github.com/NixOS/nixpkgs&shallow=1' (2025-04-23) rev: 8a2f738d9d1f1d986b5a4cd2fd2061a7127237d7 → 'git+https://github.com/NixOS/nixpkgs&shallow=1' (2025-04-24) rev: f771eb401a46846c1aebd20552521b233dd7e18b • Updated input 'quickshell': 'git+https://git.outfoxxed.me/outfoxxed/quickshell' (2025-04-06) rev: ed528268e0c0a2f6be2b5aca7089ebc3e214d446 → 'git+https://git.outfoxxed.me/quickshell/quickshell' (2025-04-06) rev: ed528268e0c0a2f6be2b5aca7089ebc3e214d446 • Updated input 'tuya-local-src': 'github:make-all/tuya-local' (2025-04-25) rev: f59636f8bfdfecdd11846191fab18b922533cb44 → 'github:make-all/tuya-local' (2025-04-26) rev: cb644c352ab44d4d99fdcd45213bc1d995288fdd Docker Images: • ghcr.io/linuxserver/sonarr latest: sha256:cefa1c97ba8f5db60c1c89d04015ead764d3b850b4fbdc5784bdde2a02d72350 → sha256:a347f6c83d9d47af53819287410ac4d7f203987038bf7579d819020ef84116d3
32 lines
538 B
Nix
32 lines
538 B
Nix
{
|
|
buildApp,
|
|
callPackage,
|
|
curl,
|
|
findutils,
|
|
go,
|
|
jq,
|
|
nix-update,
|
|
nodejs_latest,
|
|
prefetch-npm-deps,
|
|
...
|
|
}:
|
|
buildApp {
|
|
src = ./.;
|
|
npmDepsHash = "sha256-lQ2RCJ1hvx3lMkF9YKY80IlTUiRLguQOBqIrSbFggLw=";
|
|
|
|
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.
|
|
'';
|
|
}
|