nixos-configs/apps/update-sources/default.nix

33 lines
538 B
Nix
Raw Normal View History

{
buildApp,
callPackage,
curl,
findutils,
2024-12-29 01:28:33 -05:00
go,
jq,
nix-update,
nodejs_latest,
prefetch-npm-deps,
...
}:
buildApp {
src = ./.;
chore: update sources Flake Inputs: • Updated input 'gpu-screen-recorder-src': 'git+https://repo.dec05eba.com/gpu-screen-recorder' (2025-02-24) rev: d9f61602d002d6eeb94d2f299ad83260bd21db7d → 'git+https://repo.dec05eba.com/gpu-screen-recorder' (2025-02-27) rev: 9bfeb95e3969f978686d57d7301174f29394088f • Updated input 'home-manager': 'github:nix-community/home-manager' (2025-02-26) rev: 53c587d263f94aaf6a281745923c76bbec62bcf3 → 'github:nix-community/home-manager' (2025-02-27) rev: 343646e092696d94b6f22b6875ae685756fd4cf0 • Updated input 'hyprland': 'github:hyprwm/Hyprland' (2025-02-25) rev: f0850905f0275922340035f62b6d808c2980ceda → 'github:hyprwm/Hyprland' (2025-02-26) rev: d5920bc5da75b8eaf3476bc814bd46d225709788 • Updated input 'jovian': 'github:Jovian-Experiments/Jovian-NixOS' (2025-02-26) rev: 14a125ea5c440c57310dc1bb3acf7641078d783a → 'github:Jovian-Experiments/Jovian-NixOS' (2025-02-27) rev: 227d9adc3331820a349b3344a5fcc710a5f196c1 • Updated input 'nixcord': 'github:kaylorben/nixcord' (2025-02-26) rev: 599d420c9921228e21dba1257cfe0cce6bdb684d → 'github:kaylorben/nixcord' (2025-02-27) rev: 6c5583b38f5c3ccc40b90be0129407a4d04ab683 • Updated input 'nixpkgs': 'github:NixOS/nixpkgs' (2025-02-24) rev: 0196c0175e9191c474c26ab5548db27ef5d34b05 → 'github:NixOS/nixpkgs' (2025-02-26) rev: 5135c59491985879812717f4c9fea69604e7f26f • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland' (2025-02-26) rev: ddf8917ab3e6288b361cd8099c69c6e58ba3cc39 → 'github:nix-community/nixpkgs-wayland' (2025-02-27) rev: 3b15bb3ab4868d20958a71232290d0ab2f9849aa • Updated input 'spotifyplus-src': 'github:thlucas1/homeassistantcomponent_spotifyplus' (2025-02-22) rev: eee864fe7ff76fa61feb01663ac7fb1af78801ee → 'github:thlucas1/homeassistantcomponent_spotifyplus' (2025-02-26) rev: 6b67846e275ee184e31add3499a3d3207e33514f Docker Images: • onlyoffice/documentserver latest: sha256:7bf6a672e1743d62002aa518ea880f486f642c238ee93aa6d572f899a05da486 → sha256:7cf23e8d1376d8c56b0d98696762bdecbe3c8b0d3c182592ed66e2e65b4f8f51
2025-02-27 14:03:11 -05:00
npmDepsHash = "sha256-SJzHyKQlijIvPA4XCJH8iZPqRcTFZR0TEHlTGqtxLIA=";
runtimeInputs = [
curl
findutils
2024-12-29 01:28:33 -05:00
go
jq
nix-update
nodejs_latest
prefetch-npm-deps
(callPackage ../../modules/docker/updateImage.nix {})
];
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.
'';
}