mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
Merge pull request #33899 from antonxy/lightworks2
Lightworks: use old portaudio 2014
This commit is contained in:
commit
272ecfccb9
@ -10532,6 +10532,13 @@ with pkgs;
|
||||
inherit (darwin.apple_sdk.frameworks) AudioToolbox AudioUnit CoreAudio CoreServices Carbon;
|
||||
};
|
||||
|
||||
portaudio2014 = portaudio.overrideAttrs (oldAttrs: {
|
||||
src = fetchurl {
|
||||
url = http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz;
|
||||
sha256 = "0mwddk4qzybaf85wqfhxqlf0c5im9il8z03rd4n127k8y2jj9q4g";
|
||||
};
|
||||
});
|
||||
|
||||
portmidi = callPackage ../development/libraries/portmidi {};
|
||||
|
||||
prison = callPackage ../development/libraries/prison { };
|
||||
@ -15868,7 +15875,9 @@ with pkgs;
|
||||
inherit (gnome3) libpeas gsettings_desktop_schemas dconf;
|
||||
};
|
||||
|
||||
lightworks = callPackage ../applications/video/lightworks { };
|
||||
lightworks = callPackage ../applications/video/lightworks {
|
||||
portaudio = portaudio2014;
|
||||
};
|
||||
|
||||
lingot = callPackage ../applications/audio/lingot {
|
||||
inherit (gnome2) libglade;
|
||||
|
Loading…
Reference in New Issue
Block a user