3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/video/openshot-qt/libopenshot.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
1.6 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, alsa-lib
, cmake
, cppzmq
, doxygen
, ffmpeg
, imagemagick
, jsoncpp
, libopenshot-audio
, llvmPackages
, pkg-config
, python3
, qtbase
, qtmultimedia
, swig
, zeromq
}:
2016-07-17 16:39:15 +01:00
stdenv.mkDerivation rec {
2019-04-12 01:27:08 +01:00
pname = "libopenshot";
version = "0.2.7";
2016-07-17 16:39:15 +01:00
src = fetchFromGitHub {
owner = "OpenShot";
repo = "libopenshot";
rev = "v${version}";
sha256 = "sha256-aF8wrPxFIjCy5gw72e/WyL/Wcx9tUGDkrqHS+ZDVK0U=";
2016-07-17 16:39:15 +01:00
};
2021-01-07 14:27:53 +00:00
postPatch = ''
2016-07-17 16:39:15 +01: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' bindings/python/CMakeLists.txt
2016-07-17 16:39:15 +01:00
export _REL_PYTHON_MODULE_PATH=$(toPythonPath $out)
'';
nativeBuildInputs = [
alsa-lib
cmake
doxygen
pkg-config
swig
];
buildInputs = [
cppzmq
ffmpeg
imagemagick
jsoncpp
libopenshot-audio
python3
qtbase
qtmultimedia
zeromq
] ++ lib.optionals stdenv.isDarwin [
llvmPackages.openmp
];
2016-07-17 16:39:15 +01:00
dontWrapQtApps = true;
2016-07-17 16:39:15 +01:00
doCheck = false;
cmakeFlags = [ "-DENABLE_RUBY=OFF" ];
meta = with lib; {
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 = licenses.gpl3Plus;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
};
passthru = {
inherit libopenshot-audio;
2016-07-17 16:39:15 +01:00
};
}