nix: fix build inputs

This commit is contained in:
Gabriel Fontes
2023-06-11 02:06:48 -03:00
parent 5122f8c5ec
commit 076763a9c9
2 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@
devShells = forAllPkgs (pkgs: {
default = pkgs.mkShell {
inputsFrom = [ self.outputs.packages.${pkgs.system}.default ];
buildInputs = with pkgs; [ clippy rust-analyzer rustc rustfmt ];
buildInputs = with pkgs; [ clippy rust-analyzer rustc rustfmt ffmpeg ];
};
});