Flake Inputs: • Updated input 'agsV2': 'github:Aylur/ags/a93f0ac' (2024-10-16) → 'github:Aylur/ags/b7f3896' (2024-10-19) • Updated input 'astal': 'github:Aylur/astal/f763c44' (2024-10-18) → 'github:Aylur/astal/bfb7e27' (2024-10-20) • Updated input 'custom-sidebar-src': 'github:elchininet/custom-sidebar/fcada91' (2024-10-15) → 'github:elchininet/custom-sidebar/80942f5' (2024-10-21) • Updated input 'home-manager': 'github:nix-community/home-manager/09a0c0c' (2024-10-18) → 'github:nix-community/home-manager/1e27f21' (2024-10-20) • Updated input 'hyprland': 'github:hyprwm/Hyprland/0e630e9' (2024-10-17) → 'github:hyprwm/Hyprland/62ee5cc' (2024-10-19) • Updated input 'nix-gaming': 'github:fufexan/nix-gaming/79f0e31' (2024-10-18) → 'github:fufexan/nix-gaming/177e270' (2024-10-20) • Updated input 'nix-index-db': 'github:Mic92/nix-index-database/5c54c33' (2024-10-13) → 'github:Mic92/nix-index-database/04f8a11' (2024-10-20) • Updated input 'nixd': 'github:nix-community/nixd/c38702b' (2024-10-01) → 'github:nix-community/nixd/d3c7e56' (2024-10-20) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/5785b6b' (2024-10-16) → 'github:NixOS/nixpkgs/4c2fcb0' (2024-10-18) • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland/2535bdd' (2024-10-18) → 'github:nix-community/nixpkgs-wayland/7c64c3c' (2024-10-20) • Updated input 'pokemon-colorscripts-src': 'gitlab:phoneybadger/pokemon-colorscripts/0483c85' (2022-10-28) → 'gitlab:phoneybadger/pokemon-colorscripts/5802ff6' (2024-10-19) • Updated input 'sops-nix': 'github:Mic92/sops-nix/06535d0' (2024-10-08) → 'github:Mic92/sops-nix/c504fd7' (2024-10-20) • Updated input 'spotifywebapi-src': 'github:thlucas1/SpotifyWebApiPython/4bb0658' (2024-10-14) → 'github:thlucas1/SpotifyWebApiPython/8c6aff1' (2024-10-19) • Updated input 'tuya-local-src': 'github:make-all/tuya-local/587d622' (2024-10-18) → 'github:make-all/tuya-local/38744c0' (2024-10-21) Docker Images: • rssbridge/rss-bridge latest: sha256:da785b43f43e4f718c525d71453d6b7011db98c68434f02315cb7ee1ecc88889 → sha256:42b4d1d1e3fb2c361a3a2fe2921a847bbdcd0d6d14a4d411482665fc4560a58d
91 lines
1.9 KiB
TypeScript
91 lines
1.9 KiB
TypeScript
import { spawnSync } from 'node:child_process';
|
|
import { writeFileSync } from 'node:fs';
|
|
|
|
import { parseArgs } from './lib.ts';
|
|
import { updateFirefoxAddons } from '././firefox.ts';
|
|
|
|
import {
|
|
updateCustomSidebarDeps,
|
|
updateDocker,
|
|
updateFlakeInputs,
|
|
updateVuetorrent,
|
|
} from './misc.ts';
|
|
|
|
|
|
/* Constants */
|
|
const FLAKE = process.env.FLAKE;
|
|
|
|
if (!FLAKE) {
|
|
console.error('Env var FLAKE not found');
|
|
process.exit(1);
|
|
}
|
|
|
|
const args = parseArgs();
|
|
|
|
if (args['d'] || args['docker']) {
|
|
console.log(updateDocker());
|
|
}
|
|
|
|
if (args['i'] || args['inputs']) {
|
|
console.log(updateFlakeInputs());
|
|
}
|
|
|
|
if (args['f'] || args['firefox']) {
|
|
console.log(updateFirefoxAddons());
|
|
}
|
|
|
|
if (args['v'] || args['vuetorrent']) {
|
|
console.log(updateVuetorrent());
|
|
}
|
|
|
|
if (args['c'] || args['custom-sidebar']) {
|
|
console.log(updateCustomSidebarDeps());
|
|
}
|
|
|
|
if (args['a'] || args['all']) {
|
|
// Update this first because of nix run cmd
|
|
const firefoxOutput = updateFirefoxAddons();
|
|
|
|
console.log(firefoxOutput);
|
|
|
|
|
|
const flakeOutput = updateFlakeInputs();
|
|
|
|
console.log(flakeOutput);
|
|
|
|
|
|
const dockerOutput = updateDocker();
|
|
|
|
console.log(dockerOutput);
|
|
|
|
|
|
const vuetorrentOutput = updateVuetorrent();
|
|
|
|
console.log(vuetorrentOutput);
|
|
|
|
// This doesn't need to be added to commit msgs
|
|
console.log(updateCustomSidebarDeps());
|
|
|
|
|
|
spawnSync('nix-fast-build', ['-f', `${FLAKE}#nixFastChecks`], {
|
|
shell: true,
|
|
stdio: [process.stdin, process.stdout, process.stderr],
|
|
});
|
|
|
|
const output = [
|
|
'chore: update flake.lock',
|
|
`Flake Inputs:\n${flakeOutput}`,
|
|
`Docker Images:\n${dockerOutput}`,
|
|
`Firefox Addons:\n${firefoxOutput}`,
|
|
`Misc Sources:\n${vuetorrentOutput}`,
|
|
].join('\n\n');
|
|
|
|
if (args['f']) {
|
|
writeFileSync(args['f'] as string, output);
|
|
}
|
|
else {
|
|
console.log(output);
|
|
}
|
|
}
|
|
|
|
spawnSync('alejandra', ['-q', FLAKE], { shell: true });
|