Merge pull request #326211 from gepbird/openshot-fix
openshot-qt: fix build by pinning python to 3.11
This commit is contained in:
@@ -47,7 +47,7 @@ mkDerivationWith python3.pkgs.buildPythonApplication {
|
||||
pyqtwebengine
|
||||
pyzmq
|
||||
requests
|
||||
sip4
|
||||
sip
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
@@ -15955,7 +15955,9 @@ with pkgs;
|
||||
graalvmDrv = graalvm-ce;
|
||||
}).override;
|
||||
|
||||
openshot-qt = libsForQt5.callPackage ../applications/video/openshot-qt { };
|
||||
openshot-qt = libsForQt5.callPackage ../applications/video/openshot-qt {
|
||||
python3 = python311;
|
||||
};
|
||||
|
||||
lingua-franca = callPackage ../development/compilers/lingua-franca { };
|
||||
|
||||
|
||||
@@ -158,6 +158,7 @@ in (noExtraAttrs (kdeFrameworks // plasmaMobileGear // plasma5 // plasma5.thirdP
|
||||
|
||||
libopenshot = callPackage ../development/libraries/libopenshot {
|
||||
stdenv = if pkgs.stdenv.isDarwin then pkgs.overrideSDK pkgs.stdenv "11.0" else pkgs.stdenv;
|
||||
python3 = pkgs.python311;
|
||||
};
|
||||
|
||||
packagekit-qt = callPackage ../tools/package-management/packagekit/qt.nix { };
|
||||
|
||||
Reference in New Issue
Block a user