summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video/olive-editor
diff options
context:
space:
mode:
authorAlexander Bantyev <balsoft@yandex.ru>2019-05-10 19:31:04 +0300
committerRenaud <c0bw3b@users.noreply.github.com>2019-05-10 18:31:04 +0200
commit38c093e3760897e92f826f69eec21c91d38a05fc (patch)
tree78c79ff7b9b1107e4924050d865e8220fe973d17 /pkgs/applications/video/olive-editor
parent074c02f90fd2fe439d52bca4a26d39bca2f4c0fd (diff)
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
Diffstat (limited to 'pkgs/applications/video/olive-editor')
-rw-r--r--pkgs/applications/video/olive-editor/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/applications/video/olive-editor/default.nix b/pkgs/applications/video/olive-editor/default.nix
new file mode 100644
index 000000000000..15db28b05e46
--- /dev/null
+++ b/pkgs/applications/video/olive-editor/default.nix
@@ -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;
+ };
+}