nix: fix build inputs
This commit is contained in:
@@ -7,8 +7,8 @@ in rustPlatform.buildRustPackage {
|
|||||||
|
|
||||||
src = lib.cleanSource ./.;
|
src = lib.cleanSource ./.;
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config autoconf automake makeWrapper ];
|
||||||
buildInputs = [ autoconf alsa-lib automake libopus makeWrapper ffmpeg ];
|
buildInputs = [ alsa-lib libopus ffmpeg ];
|
||||||
|
|
||||||
cargoLock = {
|
cargoLock = {
|
||||||
lockFile = ./Cargo.lock;
|
lockFile = ./Cargo.lock;
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
devShells = forAllPkgs (pkgs: {
|
devShells = forAllPkgs (pkgs: {
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
inputsFrom = [ self.outputs.packages.${pkgs.system}.default ];
|
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