nixpkgs/pkgs/applications/video/bino3d/default.nix
Atemu 9bd2506458 treewide: make ffmpeg_4-dependant packages depend on ffmpeg_4
These packages were identified as broken when ffmpeg = ffmpeg_5.

Tested _only_ by building them. If you are a maintainer of one of these
packages, please test whether your package still works.
2023-03-13 16:42:22 -06:00

26 lines
684 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;
};
}