about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/video/bino3d/default.nix
blob: 4554bea61571cbcf9d4e3e5f0c490ef8294ca773 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ mkDerivation, lib, fetchurl, pkgconfig, ffmpeg, glew, libass, openal, qtbase }:

mkDerivation rec {
  pname = "bino";
  version = "1.6.7";

  src = fetchurl {
    url = "https://bino3d.org/releases/${pname}-${version}.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;
  };
}