bino3d: init at 1.6.7
This commit is contained in:
parent
e08aea3bc3
commit
41e6eeab51
25
pkgs/applications/video/bino3d/default.nix
Normal file
25
pkgs/applications/video/bino3d/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, lib, fetchurl, pkgconfig, ffmpeg, glew, libass, openal, qtbase }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "bino-${version}";
|
||||||
|
version = "1.6.7";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://bino3d.org/releases/${name}.tar.xz";
|
||||||
|
sha256 = "04yl7ibnhajlli4a5x77az8jxbzw6b2wjay8aa6px551nmiszn9k";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
|
buildInputs = [ ffmpeg 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;
|
||||||
|
};
|
||||||
|
}
|
@ -16264,6 +16264,11 @@ in
|
|||||||
|
|
||||||
bibletime = callPackage ../applications/misc/bibletime { };
|
bibletime = callPackage ../applications/misc/bibletime { };
|
||||||
|
|
||||||
|
bino3d = libsForQt5.callPackage ../applications/video/bino3d {
|
||||||
|
ffmpeg = ffmpeg_4;
|
||||||
|
glew = glew110;
|
||||||
|
};
|
||||||
|
|
||||||
bitcoinarmory = callPackage ../applications/misc/bitcoinarmory { pythonPackages = python2Packages; };
|
bitcoinarmory = callPackage ../applications/misc/bitcoinarmory { pythonPackages = python2Packages; };
|
||||||
|
|
||||||
bitkeeper = callPackage ../applications/version-management/bitkeeper {
|
bitkeeper = callPackage ../applications/version-management/bitkeeper {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user