More setup

This commit is contained in:
Sélène Corbineau 2025-01-16 15:15:16 +01:00
parent 9e78fa52e2
commit 405f6301df
3 changed files with 8 additions and 2 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*.o
*.out

4
pw_plugin/setup Executable file
View file

@ -0,0 +1,4 @@
#!/usr/bin/env sh
export CFLAGS=$CFLAGS"$(pkg-config --cflags libpipewire-0.3)"
export LDFLAGS=$LDFLAGS"$(pkg-config --libs libpipewire-0.3)"

View file

@ -3,6 +3,6 @@ let
in
pkgs.stdenv.mkDerivation {
name = "Active echo cancelling PW plugin";
src = "./.";
buildInputs = [pkgs.pkg-config pkgs.pipewire];
nativeBuildInputs = [pkgs.pkg-config pkgs.pipewire];
buildInputs = [pkgs.pipewire];
}