Flake Inputs: • Updated input 'gtk-theme-src': 'github:dracula/gtk' (2025-04-18) rev: 82837065c824158d4242c19ea7dded7645b9a9f1 → 'github:dracula/gtk' (2025-04-27) rev: 3834a1bac175b226cff6b1c94faac9aba2819bd5 • Updated input 'home-manager': 'github:nix-community/home-manager' (2025-04-27) rev: 7b2aae3fb39928aecc5e41c10a9c87c4881614d5 → 'github:nix-community/home-manager' (2025-04-28) rev: d0d9d0a1454d5a0200693570618084d80a8b336c • Updated input 'hyprgrass': 'github:horriblename/hyprgrass' (2025-04-26) rev: 9125826ccc16bd3722fd07d74e7c5677b9c6d128 → 'github:horriblename/hyprgrass' (2025-04-27) rev: 9b548876dcd30924047feed6b3b3086142d53ab4 • Updated input 'hyprland': 'github:hyprwm/Hyprland' (2025-04-27) rev: 0302bfdc2207f9b5482fb07aa6052e7f6cb237ca → 'github:hyprwm/Hyprland' (2025-04-27) rev: f5c5cfa960c157c8df50b496f621290234ac4505 • Updated input 'modernz-src': 'github:Samillion/ModernZ' (2025-04-19) rev: 6c49917529ab419a539d04f355a4760279964e57 → 'github:Samillion/ModernZ' (2025-04-28) rev: 7b0a1ab702a4f2773eb20ad1c77ec257bdeca22d • Updated input 'nix-fast-build': 'github:Mic92/nix-fast-build' (2025-04-27) rev: 0e5cbf407f2189941a766906bafe919b71f9126f → 'github:Mic92/nix-fast-build' (2025-04-28) rev: fc256b5e39013bb147e230a4fec513bd72c3b699 • Updated input 'spotifyplus-src': 'github:thlucas1/homeassistantcomponent_spotifyplus' (2025-04-27) rev: e2b82ab5371636f5b1c13f78264667c1732aa4d5 → 'github:thlucas1/homeassistantcomponent_spotifyplus' (2025-04-27) rev: bca176bb4a35299a8378d9ec504593e268c87868 • Updated input 'wakewords-src': 'github:fwartner/home-assistant-wakewords-collection' (2025-04-24) rev: 755eded16d3f6feeb8556d2044357f07713e04e2 → 'github:fwartner/home-assistant-wakewords-collection' (2025-04-28) rev: c7fbdcef2342974f05831dddae15462fd00bad4f Docker Images: • ghcr.io/immich-app/immich-machine-learning release: sha256:48fc9c8315a00e1856cb9dff1db626ec8c7f1e424d60a6002c7f04ce94fdfa9a → sha256:f45063889794008cfc02fcf9d359b55fe37d1f8ebaf89653c89e1dd0e876eb7d • ghcr.io/immich-app/immich-server release: sha256:71cb6d2a6587f6481ae22b1cd743c74f163acbf26ade4df890e4425bb1f2e891 → sha256:6680d88486251b0264a78a1934fe82eef875555aa6d84d703a0980328a5d5c31 Node modules: @types/node: 22.15.2 -> 22.15.3 typescript-eslint: 8.31.0 -> 8.31.1
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-D5RK/bbpJZdSu6FsbK1cqLsp4RLiJTexhyoPnTJLIsg=";
|
|
|
|
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.
|
|
'';
|
|
}
|