mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
27 lines
710 B
Nix
27 lines
710 B
Nix
{ mkDerivation, lib, fetchurl, pkg-config, ffmpeg_4, glew, libass, openal, qtbase }:
|
|
|
|
mkDerivation rec {
|
|
pname = "bino";
|
|
version = "1.6.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://bino3d.org/releases/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-8sIdX+qm7CGPHIziFBHHIe+KEbhbwDY6w/iRm1V+so4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ ffmpeg_4 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;
|
|
mainProgram = "bino";
|
|
};
|
|
}
|