biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / bino3d / default.nix
blobe0ebccac96b821dfecb21ac342f57f149ebb7a66
2   lib,
3   stdenv,
4   fetchgit,
5   cmake,
6   ninja,
7   pkg-config,
8   pandoc,
9   wrapQtAppsHook,
10   qtbase,
11   qtmultimedia,
12   qttools,
15 stdenv.mkDerivation (finalAttrs: {
16   pname = "bino";
17   version = "2.2";
19   src = fetchgit {
20     url = "https://git.marlam.de/git/bino.git";
21     rev = "bino-${finalAttrs.version}";
22     hash = "sha256-t7bkpYOswGEjUg+k2gjUkWwZJjj44KIVrEQs5P4DoSI=";
23   };
25   nativeBuildInputs = [
26     cmake
27     ninja
28     pkg-config
29     pandoc
30     wrapQtAppsHook
31   ];
33   buildInputs = [
34     qtbase
35     qtmultimedia
36     qttools
37     # The optional QVR dependency is not currently packaged.
38   ];
40   meta = {
41     description = "Video player with a focus on 3D and Virtual Reality";
42     homepage = "https://bino3d.org/";
43     sourceProvenance = [ lib.sourceTypes.fromSource ];
44     license = lib.licenses.gpl3Plus;
45     maintainers = [ lib.maintainers.orivej ];
46     platforms = lib.platforms.unix;
47     mainProgram = "bino";
48   };