nixos-configs/apps/update-sources/default.nix
matt1432 891ba58074 chore: update sources
Flake Inputs:
    • Updated input 'home-manager':
        'github:nix-community/home-manager' (2025-05-07) rev: 708074ae6db9e0468e4f48477f856e8c2d059795
      → 'github:nix-community/home-manager' (2025-05-08) rev: cea975d46d08293eae3ad0d9f16207f1ce2dfc81

    • Updated input 'hyprgrass':
        'github:horriblename/hyprgrass' (2025-05-05) rev: ea3067fd9cdff09821121a6c63d633226266aaa8
      → 'github:horriblename/hyprgrass' (2025-05-08) rev: 7cf3779b5cdc6fa62fdc733b30c31a5b8e48609c

    • Updated input 'jovian':
        'github:Jovian-Experiments/Jovian-NixOS' (2025-05-07) rev: 87911a856356a11c7864c0a66c4c000f178e19b0
      → 'github:Jovian-Experiments/Jovian-NixOS' (2025-05-08) rev: 14eb8f7d2b0cca74691db620292037bdb813ceb7

    • Updated input 'libratbag-src':
        'github:libratbag/libratbag' (2024-10-28) rev: df3c73e95841273908410ed1c563d8ed4ec21edd
      → 'github:libratbag/libratbag' (2025-05-08) rev: ad6540e39bdbf029fc24126200cdf0c5f0b00e7c

    • Updated input 'nh':
        'github:viperML/nh' (2025-05-05) rev: 4eb1941c2e30f3dabbf24619c7ca7303c448983d
      → 'github:viperML/nh' (2025-05-08) rev: d36ff531d2e0503dce3ac8a6ec5915d2dd2a3a54

    • Updated input 'nix-fast-build':
        'github:Mic92/nix-fast-build' (2025-05-07) rev: 8813922864147f81f1b0d3644f8df6cf24d0d651
      → 'github:Mic92/nix-fast-build' (2025-05-08) rev: 38eecfc45d91aa1e00a740ab39bbd9d33ba5835a

    • Updated input 'spotifywebapi-src':
        'github:thlucas1/SpotifyWebApiPython' (2025-05-05) rev: 294ef95e1655df6377f075361e981b6e3b526371
      → 'github:thlucas1/SpotifyWebApiPython' (2025-05-08) rev: 093e81f31aac4f349676866561a0620b507735ed

Node modules:
    @types/node: 22.15.15 -> 22.15.17

nix-update executions:
    scopedPackages.lovelace-components.material-rounded-theme: 4.0.4 -> 4.0.5
2025-05-08 12:12:39 -04:00

32 lines
538 B
Nix

{
buildApp,
callPackage,
curl,
findutils,
go,
jq,
nix-update,
nodejs_latest,
prefetch-npm-deps,
...
}:
buildApp {
src = ./.;
npmDepsHash = "sha256-mUU1yZ30ubDWYRgWwdskGZOTYaA65DFFYPGV3Wbkh1M=";
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.
'';
}