summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video/openshot-qt
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2020-11-30 14:20:28 +0100
committerzimbatm <zimbatm@zimbatm.com>2020-11-30 14:24:40 +0100
commitbbc9af1f0a30fe8106d6fb90f15ebb01845b3008 (patch)
tree7918ef3e7e2c99f923b401c7145644fcdfb33bf4 /pkgs/applications/video/openshot-qt
parentc5d33689da8a287ebe50a6d8e07a553e8aa4b316 (diff)
tree-wide: do not use pkgs.extend in nixpkgs
Each invocation of pkgs.extends adds 130MB of allocation to the hydra evaluator. We are already struggling with the amount of memory nixpkgs requires. `pkgs.extend` is a useful escape-hatch, but should be not be used inside of nixpkgs directly.
Diffstat (limited to 'pkgs/applications/video/openshot-qt')
-rw-r--r--pkgs/applications/video/openshot-qt/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/video/openshot-qt/default.nix b/pkgs/applications/video/openshot-qt/default.nix
index ede47ad061f6..9245bdf03e43 100644
--- a/pkgs/applications/video/openshot-qt/default.nix
+++ b/pkgs/applications/video/openshot-qt/default.nix
@@ -55,5 +55,8 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
license = with licenses; gpl3Plus;
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; unix;
+ # Cannot use a newer Qt (5.15) version because it requires qtwebkit
+ # and our qtwebkit fails to build with 5.15. 01bcfd3579219d60e5d07df309a000f96b2b658b
+ broken = true;
};
}