nix: fix build inputs
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user