matt1432
7b64131d04
All checks were successful
Discord / discord commits (push) Has been skipped
Flake Inputs: • Updated input 'gpu-screen-recorder-src': 'git+https://repo.dec05eba.com/gpu-screen-recorder' (2025-01-24) rev: 8e267bb3b0ba3b3ffec963416b0e67a210338e6c → 'git+https://repo.dec05eba.com/gpu-screen-recorder' (2025-01-25) rev: cafcda102287a836dde5342a53ddf755487b1ccb • Updated input 'hyprland': 'github:hyprwm/Hyprland' (2025-01-25) rev: 065e89648b27017871c38831cf34def94feb72d6 → 'github:hyprwm/Hyprland' (2025-01-25) rev: 445acec2a29adbb30196d8b92f86270a038b7ee5 • Updated input 'jellyfin-flake': 'github:matt1432/nixos-jellyfin' (2025-01-22) rev: f9889b595214d42ee5b803fcd150813e8929ea03 → 'github:matt1432/nixos-jellyfin' (2025-01-25) rev: 247094619b577231bb2fc5df46b035691dc55490 • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland' (2025-01-21) rev: c52a529dd1585cad4ccd5951b10ba27366aa3cee → 'github:nix-community/nixpkgs-wayland' (2025-01-25) rev: 2c421bd3ad1cd2ce4fc00baff4b6036d353b1ca7 • Updated input 'tuya-local-src': 'github:make-all/tuya-local' (2025-01-25) rev: f6d46a108a9919a8ef40ebe084c7939f51febc1a → 'github:make-all/tuya-local' (2025-01-25) rev: d0f16969601c82da1e8b42487fd2ee52bd60ca26 Docker Images: • rssbridge/rss-bridge latest: sha256:f8b3bc834ff02eeacfd0fed1fc2227b94a6d70568c22b75362b36bbb045c6d45 → sha256:a536d4d24f7325204652be2a37fb5b25532c618817657d7e31dfc0c1dc7f8d94
17 lines
291 B
Nix
17 lines
291 B
Nix
{
|
|
buildApp,
|
|
ffmpeg-full,
|
|
...
|
|
}:
|
|
buildApp {
|
|
src = ./.;
|
|
npmDepsHash = "sha256-LL6EbpRbcOEnyDoMkAEUztgauF0fsjH2BDsOVPoQjQ4=";
|
|
|
|
runtimeInputs = [
|
|
ffmpeg-full
|
|
];
|
|
|
|
meta.description = ''
|
|
Extract all `srt` subtitle files from a `mkv` video with the appropriate name.
|
|
'';
|
|
}
|