More setup
This commit is contained in:
parent
9e78fa52e2
commit
405f6301df
3 changed files with 8 additions and 2 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
*.o
|
||||||
|
*.out
|
4
pw_plugin/setup
Executable file
4
pw_plugin/setup
Executable 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)"
|
|
@ -3,6 +3,6 @@ let
|
||||||
in
|
in
|
||||||
pkgs.stdenv.mkDerivation {
|
pkgs.stdenv.mkDerivation {
|
||||||
name = "Active echo cancelling PW plugin";
|
name = "Active echo cancelling PW plugin";
|
||||||
src = "./.";
|
nativeBuildInputs = [pkgs.pkg-config pkgs.pipewire];
|
||||||
buildInputs = [pkgs.pkg-config pkgs.pipewire];
|
buildInputs = [pkgs.pipewire];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue