2021-01-17 03:09:27 +01:00
|
|
|
{ mkDerivation, lib, fetchurl, pkg-config, ffmpeg, glew, libass, openal, qtbase }:
|
2019-01-26 23:42:18 +01:00
|
|
|
|
2020-02-13 21:47:08 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "bino";
|
2021-12-11 14:04:52 +01:00
|
|
|
version = "1.6.8";
|
2019-01-26 23:42:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://bino3d.org/releases/${pname}-${version}.tar.xz";
|
2021-12-11 14:04:52 +01:00
|
|
|
sha256 = "sha256-8sIdX+qm7CGPHIziFBHHIe+KEbhbwDY6w/iRm1V+so4=";
|
2019-01-26 23:42:18 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-01-26 23:42:18 +01:00
|
|
|
|
|
|
|
buildInputs = [ ffmpeg glew libass openal qtbase ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Stereoscopic 3D and multi-display video player";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://bino3d.org/";
|
2019-01-26 23:42:18 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|