olive-editor: init at 0.0.1 (#57867)
* olive-editor: init at unstable-2019-03-18 * olive-editor: unstable-2019-03-18 -> 0.0.1 Upstream tagged a first alpha release + frei0r is now available on Darwin
This commit is contained in:
parent
074c02f90f
commit
38c093e376
40
pkgs/applications/video/olive-editor/default.nix
Normal file
40
pkgs/applications/video/olive-editor/default.nix
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, pkgconfig, which, qmake,
|
||||||
|
qtbase, qtmultimedia, frei0r, opencolorio, hicolor-icon-theme, ffmpeg-full,
|
||||||
|
CoreFoundation }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "olive-editor";
|
||||||
|
version = "0.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "olive-editor";
|
||||||
|
repo = "olive";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "191nk4c35gys4iypykcidn6h27c3sbjfy117q7h9h1qilz2wm94z";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
which
|
||||||
|
qmake
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
ffmpeg-full
|
||||||
|
frei0r
|
||||||
|
opencolorio
|
||||||
|
qtbase
|
||||||
|
qtmultimedia
|
||||||
|
qtmultimedia.dev
|
||||||
|
hicolor-icon-theme
|
||||||
|
] ++ stdenv.lib.optional stdenv.isDarwin CoreFoundation;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Professional open-source NLE video editor";
|
||||||
|
homepage = "https://www.olivevideoeditor.org/";
|
||||||
|
downloadPage = "https://www.olivevideoeditor.org/download.php";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.balsoft ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -4849,6 +4849,10 @@ in
|
|||||||
|
|
||||||
ola = callPackage ../applications/misc/ola { };
|
ola = callPackage ../applications/misc/ola { };
|
||||||
|
|
||||||
|
olive-editor = libsForQt5.callPackage ../applications/video/olive-editor {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation;
|
||||||
|
};
|
||||||
|
|
||||||
omping = callPackage ../applications/networking/omping { };
|
omping = callPackage ../applications/networking/omping { };
|
||||||
|
|
||||||
onioncircuits = callPackage ../tools/security/onioncircuits { };
|
onioncircuits = callPackage ../tools/security/onioncircuits { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user