mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
50 lines
934 B
Nix
50 lines
934 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
cmake,
|
|
ninja,
|
|
pkg-config,
|
|
pandoc,
|
|
wrapQtAppsHook,
|
|
qtbase,
|
|
qtmultimedia,
|
|
qttools,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "bino";
|
|
version = "2.3";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.marlam.de/git/bino.git";
|
|
rev = "bino-${finalAttrs.version}";
|
|
hash = "sha256-3DnEVde7LzaQUMhPi/RosRIW9j8bbkPVkihO5swCbws=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
pkg-config
|
|
pandoc
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtmultimedia
|
|
qttools
|
|
# The optional QVR dependency is not currently packaged.
|
|
];
|
|
|
|
meta = {
|
|
description = "Video player with a focus on 3D and Virtual Reality";
|
|
homepage = "https://bino3d.org/";
|
|
sourceProvenance = [ lib.sourceTypes.fromSource ];
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ lib.maintainers.orivej ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "bino";
|
|
};
|
|
})
|