bbc9af1f0a
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.
63 lines
1.9 KiB
Nix
63 lines
1.9 KiB
Nix
{ stdenv, mkDerivationWith, fetchFromGitHub, fetchpatch
|
|
, doxygen, python3Packages, libopenshot
|
|
, wrapGAppsHook, gtk3
|
|
, qtsvg }:
|
|
|
|
mkDerivationWith python3Packages.buildPythonApplication rec {
|
|
pname = "openshot-qt";
|
|
version = "2.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenShot";
|
|
repo = "openshot-qt";
|
|
rev = "v${version}";
|
|
sha256 = "0qc5i0ay6j2wab1whl41sjb71cj02pg6y79drf7asrprq8b2rmfq";
|
|
};
|
|
|
|
nativeBuildInputs = [ doxygen wrapGAppsHook ];
|
|
|
|
buildInputs = [ gtk3 ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [ libopenshot pyqt5_with_qtwebkit requests sip httplib2 pyzmq ];
|
|
|
|
dontWrapGApps = true;
|
|
dontWrapQtApps = true;
|
|
|
|
preConfigure = ''
|
|
# tries to create caching directories during install
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/openshot-qt \
|
|
''
|
|
# Fix toolbar icons on Darwin
|
|
+ stdenv.lib.optionalString stdenv.isDarwin ''
|
|
--suffix QT_PLUGIN_PATH : "${stdenv.lib.getBin qtsvg}/lib/qt-5.12.7/plugins" \
|
|
''
|
|
+ ''
|
|
"''${gappsWrapperArgs[@]}" \
|
|
"''${qtWrapperArgs[@]}"
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://openshot.org/";
|
|
description = "Free, open-source video editor";
|
|
longDescription = ''
|
|
OpenShot Video Editor is a free, open-source video editor for Linux.
|
|
OpenShot can take your videos, photos, and music files and help you
|
|
create the film you have always dreamed of. Easily add sub-titles,
|
|
transitions, and effects, and then export your film to DVD, YouTube,
|
|
Vimeo, Xbox 360, and many other common formats.
|
|
'';
|
|
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;
|
|
};
|
|
}
|