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

@@ -7,8 +7,8 @@ in rustPlatform.buildRustPackage {
src = lib.cleanSource ./.;
nativeBuildInputs = [ pkg-config ];
buildInputs = [ autoconf alsa-lib automake libopus makeWrapper ffmpeg ];
nativeBuildInputs = [ pkg-config autoconf automake makeWrapper ];
buildInputs = [ alsa-lib libopus ffmpeg ];
cargoLock = {
lockFile = ./Cargo.lock;

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 ];
};
});