nixpkgs/pkgs/applications/video/openshot-qt/libopenshot.nix

56 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub
, pkgconfig, cmake, doxygen
, libopenshot-audio, imagemagick, ffmpeg_3
, swig, python3
2019-11-02 18:18:06 +00:00
, unittest-cpp, cppzmq, zeromq
, qtbase, qtmultimedia
, llvmPackages
}:
2016-07-17 16:39:15 +01:00
with stdenv.lib;
stdenv.mkDerivation rec {
2019-04-12 01:27:08 +01:00
pname = "libopenshot";
2020-03-22 22:30:20 +00:00
version = "0.2.5";
2016-07-17 16:39:15 +01:00
src = fetchFromGitHub {
owner = "OpenShot";
repo = "libopenshot";
rev = "v${version}";
2020-03-22 22:30:20 +00:00
sha256 = "1mxjkgjmjzgf628y3rscc6rqf55hxgjpmvwxlncfk1216i5xskwp";
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)
'';
nativeBuildInputs = [ pkgconfig cmake doxygen ];
buildInputs =
[ imagemagick ffmpeg_3 swig python3 unittest-cpp
cppzmq zeromq qtbase qtmultimedia ]
++ optional stdenv.isDarwin llvmPackages.openmp
;
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;
cmakeFlags = [ "-DENABLE_RUBY=OFF" ];
2016-07-17 16:39:15 +01:00
meta = {
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; unix;
2016-07-17 16:39:15 +01:00
};
}