2019-09-03 17:35:30 +02:00
|
|
|
{ stdenv, mkDerivationWith, fetchFromGitHub, fetchpatch
|
2017-04-16 21:09:22 +02:00
|
|
|
, doxygen, python3Packages, libopenshot
|
2017-05-17 21:26:11 +02:00
|
|
|
, wrapGAppsHook, gtk3 }:
|
2016-07-17 17:39:15 +02:00
|
|
|
|
2019-08-03 06:40:54 +02:00
|
|
|
mkDerivationWith python3Packages.buildPythonApplication rec {
|
2019-04-12 02:28:20 +02:00
|
|
|
pname = "openshot-qt";
|
2020-03-22 23:30:52 +01:00
|
|
|
version = "2.5.1";
|
2016-07-17 17:39:15 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenShot";
|
|
|
|
repo = "openshot-qt";
|
|
|
|
rev = "v${version}";
|
2020-03-22 23:30:52 +01:00
|
|
|
sha256 = "0qc5i0ay6j2wab1whl41sjb71cj02pg6y79drf7asrprq8b2rmfq";
|
2016-07-17 17:39:15 +02:00
|
|
|
};
|
2017-04-16 21:09:22 +02:00
|
|
|
|
|
|
|
nativeBuildInputs = [ doxygen wrapGAppsHook ];
|
|
|
|
|
|
|
|
buildInputs = [ gtk3 ];
|
|
|
|
|
2018-12-12 01:40:28 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [ libopenshot pyqt5_with_qtwebkit requests sip httplib2 pyzmq ];
|
2017-04-16 21:09:22 +02:00
|
|
|
|
2019-08-03 06:40:54 +02:00
|
|
|
dontWrapGApps = true;
|
|
|
|
dontWrapQtApps = true;
|
2017-04-16 21:09:22 +02:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
# tries to create caching directories during install
|
|
|
|
export HOME=$(mktemp -d)
|
2016-07-17 17:39:15 +02:00
|
|
|
'';
|
|
|
|
|
2019-08-03 06:40:54 +02:00
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/openshot-qt \
|
|
|
|
"''${gappsWrapperArgs[@]}" \
|
|
|
|
"''${qtWrapperArgs[@]}"
|
|
|
|
'';
|
|
|
|
|
2016-07-17 17:39:15 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2017-04-16 21:09:22 +02:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://openshot.org/";
|
2016-07-17 17:39:15 +02:00
|
|
|
description = "Free, open-source video editor";
|
2017-03-29 11:47:30 +02:00
|
|
|
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; linux;
|
2016-07-17 17:39:15 +02:00
|
|
|
};
|
|
|
|
}
|