about summary refs log tree commit diff
path: root/pkgs/applications/video/bino3d
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2019-01-26 22:42:18 +0000
committerOrivej Desh <orivej@gmx.fr>2019-01-26 22:44:04 +0000
commit41e6eeab514a19e9ac16c5eb52358f844c0e442a (patch)
tree0b8848a1b5160199d4742b96b0df5a023e7c6451 /pkgs/applications/video/bino3d
parente08aea3bc38c832140e94a83704e03eb6abad595 (diff)
bino3d: init at 1.6.7
Diffstat (limited to 'pkgs/applications/video/bino3d')
-rw-r--r--pkgs/applications/video/bino3d/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/video/bino3d/default.nix b/pkgs/applications/video/bino3d/default.nix
new file mode 100644
index 0000000000000..d98b39796608f
--- /dev/null
+++ b/pkgs/applications/video/bino3d/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, lib, fetchurl, pkgconfig, ffmpeg, glew, libass, openal, qtbase }:
+
+stdenv.mkDerivation rec {
+  name = "bino-${version}";
+  version = "1.6.7";
+
+  src = fetchurl {
+    url = "https://bino3d.org/releases/${name}.tar.xz";
+    sha256 = "04yl7ibnhajlli4a5x77az8jxbzw6b2wjay8aa6px551nmiszn9k";
+  };
+
+  nativeBuildInputs = [ pkgconfig ];
+
+  buildInputs = [ ffmpeg glew libass openal qtbase ];
+
+  enableParallelBuilding = true;
+
+  meta = with lib; {
+    description = "Stereoscopic 3D and multi-display video player";
+    homepage = https://bino3d.org/;
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ orivej ];
+    platforms = platforms.linux;
+  };
+}