2017-03-29 09:47:30 +00:00
|
|
|
{ stdenv, fetchFromGitHub
|
2017-04-16 19:09:22 +00:00
|
|
|
, doxygen, python3Packages, libopenshot
|
2017-05-17 19:26:11 +00:00
|
|
|
, wrapGAppsHook, gtk3 }:
|
2016-07-17 15:39:15 +00:00
|
|
|
|
2017-04-16 19:09:22 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2019-04-12 00:28:20 +00:00
|
|
|
pname = "openshot-qt";
|
|
|
|
version = "2.4.4";
|
2016-07-17 15:39:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenShot";
|
|
|
|
repo = "openshot-qt";
|
|
|
|
rev = "v${version}";
|
2019-04-12 00:28:20 +00:00
|
|
|
sha256 = "0mg63v36h7l8kv2sgf6x8c1n3ygddkqqwlciz7ccxpbm4x1idqba";
|
2016-07-17 15:39:15 +00:00
|
|
|
};
|
2017-04-16 19:09:22 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ doxygen wrapGAppsHook ];
|
|
|
|
|
|
|
|
buildInputs = [ gtk3 ];
|
|
|
|
|
2018-12-12 00:40:28 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [ libopenshot pyqt5_with_qtwebkit requests sip httplib2 pyzmq ];
|
2017-04-16 19:09:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
# tries to create caching directories during install
|
|
|
|
export HOME=$(mktemp -d)
|
2016-07-17 15:39:15 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-04-16 19:09:22 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-03-29 09:47:30 +00:00
|
|
|
homepage = http://openshot.org/;
|
2016-07-17 15:39:15 +00:00
|
|
|
description = "Free, open-source video editor";
|
2017-03-29 09:47:30 +00: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 15:39:15 +00:00
|
|
|
};
|
|
|
|
}
|