libopus
Some checks failed
CI / checks (push) Failing after 3s

This commit is contained in:
Robin Appelman 2025-05-04 22:01:13 +02:00
commit e7b07da5c0
3 changed files with 3 additions and 2 deletions

View file

@ -63,7 +63,7 @@ Additionally, dependencies for the following crates should be automatically dete
## Development tooling
Development tools for working with the following crates are automatically added to the dev-shell
Development tools for working with the following crates are automatically added to the dev-shell when needed
- cargo-insta
- sqlx

View file

@ -46,7 +46,7 @@
in
map (path: getAttrFromPath path pkgs) depPaths;
autoDeps = pkgs: {
buildInputs = getPkgs pkgs (lib.traceValSeq mergedDetectedDeps.build);
buildInputs = getPkgs pkgs mergedDetectedDeps.build;
nativeBuildInputs = with pkgs; [pkg-config] ++ (getPkgs pkgs mergedDetectedDeps.native);
runtimeInputs = getPkgs pkgs mergedDetectedDeps.runtime;
env = mergedDetectedDeps.env pkgs;

View file

@ -15,4 +15,5 @@
"freetype-sys" = {build = ["freetype"];};
"alsa-sys" = {build = ["alsa-lib"];};
"wgpu" = {runtime = ["vulkan-loader"];};
"audiopus_sys" = {build = ["libopus"];};
}