A flake to package Sickbeard's MP4 Automator (https://github.com/mdhiggins/sickbeard_mp4_automator).
Go to file
D. Moonfire a35b5329d7 doc: added read me 2023-10-04 10:27:09 -05:00
.gitignore chore: initial commit 2023-08-27 17:35:12 -05:00
README.md doc: added read me 2023-10-04 10:27:09 -05:00
autoProcess.ini chore: initial commit 2023-08-27 17:35:12 -05:00
flake.lock chore: initial commit 2023-08-27 17:35:12 -05:00
flake.nix chore: initial commit 2023-08-27 17:35:12 -05:00
logging.ini chore: initial commit 2023-08-27 17:35:12 -05:00
requirements.txt chore: initial commit 2023-08-27 17:35:12 -05:00
setup.py chore: initial commit 2023-08-27 17:35:12 -05:00

README.md

NixOS Flake for Sickbeard's MP4 Automator

This is the repository for pulling Sickbeard's MP4 Automator into a flake.

Binaries

  • sbmp4a: This is the manual.py of the original archive, properly wrapped and set up for use.

Usage

Dylan hasn't mastered Colmena yet to figure out how to make it a flake input, so he pulls it in using a nix file like below. There are definately better ways to do it, this just works.

inputs @ {
  pkgs,
  ...
}: let
  system = "x86_64-linux";
  sbmp4a-flake = builtins.getFlake "git+https://src.mfgames.com/nixos-contrib/sickbeard-mp4-automator-flake?rev=dcfad411fe22dbe1561cbb84aecc95e4e42d9af0";
in {
  environment.systemPackages = with pkgs; [
    ffmpeg
    sbmp4a-flake.defaultPackage.${system}
  ];
}