reaper: add support for pipewire-jack
This commit is contained in:
parent
f2537a505d
commit
134c7be40b
2 changed files with 9 additions and 5 deletions
|
@ -11,8 +11,10 @@
|
||||||
, xdg-utils
|
, xdg-utils
|
||||||
, which
|
, which
|
||||||
|
|
||||||
, jackSupport ? true, libjack2
|
, jackSupport ? true
|
||||||
, pulseaudioSupport ? config.pulseaudio or true, libpulseaudio
|
, jackLibrary
|
||||||
|
, pulseaudioSupport ? config.pulseaudio or true
|
||||||
|
, libpulseaudio
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -43,7 +45,7 @@ stdenv.mkDerivation rec {
|
||||||
runtimeDependencies = [
|
runtimeDependencies = [
|
||||||
gtk3 # libSwell needs libgdk-3.so.0
|
gtk3 # libSwell needs libgdk-3.so.0
|
||||||
]
|
]
|
||||||
++ lib.optional jackSupport libjack2
|
++ lib.optional jackSupport jackLibrary
|
||||||
++ lib.optional pulseaudioSupport libpulseaudio;
|
++ lib.optional pulseaudioSupport libpulseaudio;
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
|
@ -79,6 +81,6 @@ stdenv.mkDerivation rec {
|
||||||
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
platforms = [ "x86_64-linux" "aarch64-linux" ];
|
platforms = [ "x86_64-linux" "aarch64-linux" ];
|
||||||
maintainers = with maintainers; [ jfrankenau ilian orivej uniquepointer ];
|
maintainers = with maintainers; [ jfrankenau ilian orivej uniquepointer viraptor ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -29577,7 +29577,9 @@ with pkgs;
|
||||||
|
|
||||||
rdup = callPackage ../tools/backup/rdup { };
|
rdup = callPackage ../tools/backup/rdup { };
|
||||||
|
|
||||||
reaper = callPackage ../applications/audio/reaper { };
|
reaper = callPackage ../applications/audio/reaper {
|
||||||
|
jackLibrary = libjack2; # Another option is "pipewire.jack".
|
||||||
|
};
|
||||||
|
|
||||||
recapp = callPackage ../applications/video/recapp { };
|
recapp = callPackage ../applications/video/recapp { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue