nixpkgs/pkgs/applications/video/bino3d/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
684 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchurl, pkg-config, ffmpeg_4, glew, libass, openal, qtbase }:
2019-01-26 22:42:18 +00:00
mkDerivation rec {
pname = "bino";
2021-12-11 13:04:52 +00:00
version = "1.6.8";
2019-01-26 22:42:18 +00:00
src = fetchurl {
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
};
nativeBuildInputs = [ pkg-config ];
2019-01-26 22:42:18 +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";
homepage = "https://bino3d.org/";
2019-01-26 22:42:18 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
};
}