add simple mux command

This commit is contained in:
2022-02-26 03:05:34 +05:30
parent e503f60bc3
commit d5343202aa
9 changed files with 200 additions and 4 deletions

View File

@@ -20,9 +20,10 @@
devShells = with pkgs; {
default = mkShell
{
buildInputs = [
buildInputs = with gst_all_1; [
rust-bin.nightly.latest.default
rust-analyzer
ffmpeg
];
};
bare = mkShell
@@ -47,6 +48,9 @@
nativeBuildInputs = with pkgs; [
rust-bin.nightly.latest.default
];
buildInputs = with pkgs; [
ffmpeg
];
cargoSha256 = "sha256-DhWWUNDpDsao6lOogoM5UfUgrUfEmZvCpY0pxmr4/mI=";
};
}