3e6ce75b8f
Also update libopenshot (0.1.1 -> 0.1.2) and libopenshot-audio (0.1.1 -> 0.1.2). Both libraries seem to be somewhat version coupled with openshot (all three projects had a release at the same time). Openshot now depends on ZMQ. Test notes: the application runs, but I managed to crash it after doing this: * Import pictures and video * Add two pictures to the timeline (next to each other) * Drag the 2nd picture partly over over the first (creates an effect). App dies. The last output from the app is: timeline_webview:INFO addTransition... Unhandled Python exception Aborted The same crash happens with v2.0.7 though.
31 lines
756 B
Nix
31 lines
756 B
Nix
{stdenv, fetchurl, fetchFromGitHub, cmake, doxygen
|
|
, libX11, libXft, libXrandr, libXinerama, libXext, libXcursor, alsaLib}:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libopenshot-audio-${version}";
|
|
version = "0.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenShot";
|
|
repo = "libopenshot-audio";
|
|
rev = "v${version}";
|
|
sha256 = "0dxyhnqkjc5y4hra8s17q9lafll6fx0pgibmmjznjm70whqcj8a6";
|
|
};
|
|
|
|
buildInputs = [
|
|
cmake doxygen
|
|
libX11 libXft libXrandr libXinerama libXext libXcursor alsaLib
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = "http://openshot.org/";
|
|
description = "Free, open-source video editor";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [maintainers.tohl];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|