diff --git a/default.nix b/default.nix index a1397e5..45345d2 100644 --- a/default.nix +++ b/default.nix @@ -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; diff --git a/flake.nix b/flake.nix index d03b1e8..a220376 100644 --- a/flake.nix +++ b/flake.nix @@ -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 ]; }; });