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