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

64 lines
1.9 KiB
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, fetchFromGitHub, fetchpatch
, pkg-config, 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 15:39:15 +00:00
2021-01-15 05:42:41 +00:00
with lib;
2016-07-17 15:39:15 +00:00
stdenv.mkDerivation rec {
2019-04-12 00:27:08 +00:00
pname = "libopenshot";
2020-03-22 22:30:20 +00:00
version = "0.2.5";
2016-07-17 15:39:15 +00:00
src = fetchFromGitHub {
owner = "OpenShot";
repo = "libopenshot";
rev = "v${version}";
2020-03-22 22:30:20 +00:00
sha256 = "1mxjkgjmjzgf628y3rscc6rqf55hxgjpmvwxlncfk1216i5xskwp";
2016-07-17 15:39:15 +00:00
};
2021-01-07 14:27:53 +00:00
patches = [
(fetchpatch {
name = "fix-build-with-gcc-10.patch";
url = "https://github.com/OpenShot/libopenshot/commit/13290364e7bea54164ab83d973951f2898ad9e23.diff";
sha256 = "0i7rpdsr8y9dphil8yq75qbh20vfqjc2hp5ahv0ws58z9wj6ngnz";
})
];
postPatch = ''
2016-07-17 15:39:15 +00:00
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 = [ pkg-config cmake doxygen ];
buildInputs =
[ imagemagick ffmpeg_3 swig python3 unittest-cpp
cppzmq zeromq qtbase qtmultimedia ]
++ optional stdenv.isDarwin llvmPackages.openmp
;
2016-07-17 15:39:15 +00:00
2019-09-08 23:38:31 +00:00
LIBOPENSHOT_AUDIO_DIR = libopenshot-audio;
2016-07-17 15:39:15 +00:00
"UNITTEST++_INCLUDE_DIR" = "${unittest-cpp}/include/UnitTest++";
doCheck = false;
cmakeFlags = [ "-DENABLE_RUBY=OFF" ];
2016-07-17 15:39:15 +00: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 15:39:15 +00:00
};
}