All checks were successful
Discord / discord commits (push) Has been skipped
Flake Inputs: • Updated input 'astal': 'github:Aylur/astal' (2025-03-07) rev: e14e19c220575446c4a0e815705c88b28e3850e0 → 'github:Aylur/astal' (2025-03-08) rev: f38433594051ee75957720d1c36de00896a67eb6 • Updated input 'home-manager': 'github:nix-community/home-manager' (2025-03-07) rev: 04c915bcf1a1eac3519372ff3185beef053fba7c → 'github:nix-community/home-manager' (2025-03-08) rev: 7f4c60a3d6e548dbc13666565c22cb3f8dcdad44 • Updated input 'hyprland': 'github:hyprwm/Hyprland' (2025-03-06) rev: 7753e8ea686ba0aeaa825502f27e5b3f813faade → 'github:hyprwm/Hyprland' (2025-03-08) rev: d30cc19d253a3db784ad10c3084f58cbb52d325a • Updated input 'hyprland/aquamarine': 'github:hyprwm/aquamarine' (2025-02-11) rev: f239e5aadd6d23c48e085c2de3397e2058e54d16 → 'github:hyprwm/aquamarine' (2025-03-06) rev: 81498562d0f53e613d30368bb5b076784fa86f80 • Updated input 'hyprland/hyprlang': 'github:hyprwm/hyprlang' (2025-02-08) rev: a7334904d591f38757c46fbe2ab68651877d9099 → 'github:hyprwm/hyprlang' (2025-03-05) rev: 72df3861f1197e41b078faa3e38eedd60e00018d • Updated input 'hyprland/hyprutils': 'github:hyprwm/hyprutils' (2025-02-18) rev: 61a5382f4b1ab578064d470b1b3d3f0df396b8ba → 'github:hyprwm/hyprutils' (2025-03-04) rev: 6b0154b183f9539097f13af9b5da78ca24da6df2 • Updated input 'hyprland/hyprwayland-scanner': 'github:hyprwm/hyprwayland-scanner' (2025-02-08) rev: 04146df74a8d5ec0b579657307be01f1e241125f → 'github:hyprwm/hyprwayland-scanner' (2025-02-18) rev: 206367a08dc5ac4ba7ad31bdca391d098082e64b • Updated input 'jovian': 'github:Jovian-Experiments/Jovian-NixOS' (2025-03-07) rev: 1821e6ae980ff6175d28065ad6d0c87560d2b8ea → 'github:Jovian-Experiments/Jovian-NixOS' (2025-03-08) rev: d6075ed971c7bc60d4295670561270841525bdf9 • Updated input 'nix-index-db': 'github:Mic92/nix-index-database' (2025-03-02) rev: 26a0f969549cf4d56f6e9046b9e0418b3f3b94a5 → 'github:Mic92/nix-index-database' (2025-03-08) rev: eeaf10849c3a0435323216885c0df7569dc95cb9 • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland' (2025-03-07) rev: ef25348c4447a2fc6603c76aee6c0b4532488107 → 'github:nix-community/nixpkgs-wayland' (2025-03-08) rev: 9383414b9769faee22cedf0ff2b4e52cd7615b74 • Updated input 'spotifywebapi-src': 'github:thlucas1/SpotifyWebApiPython' (2025-03-02) rev: 617f5e9497d1b0a732af753e4744f80697667917 → 'github:thlucas1/SpotifyWebApiPython' (2025-03-08) rev: 0afe814eaf7faac6a8992266e0525a23dae8cbf1 Docker Images: • ghcr.io/linuxserver/sonarr latest: sha256:4dfedb2598dc6bd51c40f4ecea2631dbe367840678ab109cd968f821d81a5327 → sha256:49a8e636fd4514b23d37c84660101fecbb632174ba0569e0f09bbd2659a2a925 Node modules: @types/node: 22.13.9 -> 22.13.10
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-+/wJ8lbNHjoCrBgH/eZ9huNHjWne6x+qF6wH3MCF0uE=";
|
|
|
|
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.
|
|
'';
|
|
}
|