2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub
|
2017-03-29 10:47:30 +01:00
|
|
|
, pkgconfig, cmake, doxygen
|
|
|
|
, libopenshot-audio, imagemagick, ffmpeg
|
2017-08-29 11:30:47 +01:00
|
|
|
, swig, python3
|
2017-03-29 10:47:30 +01:00
|
|
|
, unittest-cpp, cppzmq, czmqpp
|
|
|
|
, qtbase, qtmultimedia }:
|
2016-07-17 16:39:15 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-12 01:27:08 +01:00
|
|
|
pname = "libopenshot";
|
|
|
|
version = "0.2.3";
|
2016-07-17 16:39:15 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenShot";
|
|
|
|
repo = "libopenshot";
|
|
|
|
rev = "v${version}";
|
2019-04-12 01:27:08 +01:00
|
|
|
sha256 = "0r1qmr8ar5n72603xkj9h065vbpznrqsq88kxxmn9n8djyyvk03k";
|
2016-07-17 16:39:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's/{UNITTEST++_INCLUDE_DIR}/ENV{UNITTEST++_INCLUDE_DIR}/g' tests/CMakeLists.txt
|
|
|
|
sed -i 's/{_REL_PYTHON_MODULE_PATH}/ENV{_REL_PYTHON_MODULE_PATH}/g' src/bindings/python/CMakeLists.txt
|
|
|
|
export _REL_PYTHON_MODULE_PATH=$(toPythonPath $out)
|
|
|
|
'';
|
|
|
|
|
2017-03-29 10:47:30 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake doxygen ];
|
|
|
|
|
|
|
|
buildInputs =
|
2017-08-29 11:30:47 +01:00
|
|
|
[ imagemagick ffmpeg swig python3 unittest-cpp
|
2017-03-29 10:47:30 +01:00
|
|
|
cppzmq czmqpp qtbase qtmultimedia ];
|
2016-07-17 16:39:15 +01:00
|
|
|
|
2019-09-09 00:38:31 +01:00
|
|
|
LIBOPENSHOT_AUDIO_DIR = libopenshot-audio;
|
2016-07-17 16:39:15 +01:00
|
|
|
"UNITTEST++_INCLUDE_DIR" = "${unittest-cpp}/include/UnitTest++";
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-08-29 11:30:47 +01:00
|
|
|
cmakeFlags = [ "-DENABLE_RUBY=OFF" ];
|
|
|
|
|
2016-07-17 16:39:15 +01:00
|
|
|
meta = {
|
2017-03-29 10:47:30 +01:00
|
|
|
homepage = http://openshot.org/;
|
|
|
|
description = "Free, open-source video editor library";
|
|
|
|
longDescription = ''
|
|
|
|
OpenShot Library (libopenshot) is an open-source project dedicated to
|
|
|
|
delivering high quality video editing, animation, and playback solutions
|
|
|
|
to the world. API currently supports C++, Python, and Ruby.
|
|
|
|
'';
|
|
|
|
license = with licenses; gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
platforms = with platforms; linux;
|
2016-07-17 16:39:15 +01:00
|
|
|
};
|
|
|
|
}
|