stream video file
All checks were successful
Rust / build (pull_request) Successful in 9m0s

This commit is contained in:
Vinzenz Schroeter 2025-03-08 12:06:13 +01:00
parent 05289581a1
commit cfe9699997
8 changed files with 179 additions and 7 deletions

View file

@ -90,8 +90,7 @@
{
default = pkgs.mkShell rec {
inputsFrom = [ self.packages.${system}.default ];
packages = [
pkgs.gdb
packages = with pkgs; [
(pkgs.symlinkJoin {
name = "rust-toolchain";
paths = with pkgs; [
@ -103,7 +102,11 @@
cargo-expand
];
})
pkgs.cargo-flamegraph
cargo-flamegraph
gdb
ffmpeg-headless
];
LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath (builtins.concatMap (d: d.buildInputs) inputsFrom)}";
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";