biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / video / mpv / scripts / vr-reversal.nix
blob9a7b335a6591d7eecfad46f31fd861c806d8cd92
1 { lib, stdenvNoCC, fetchFromGitHub, gitUpdater, ffmpeg }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "vr-reversal";
5   version = "1.1";
7   src = fetchFromGitHub {
8     owner = "dfaker";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1wn2ngcvn7wcsl3kmj782x5q9130qw951lj6ilrkafp6q6zscpqr";
12   };
13   passthru.updateScript = gitUpdater {
14     rev-prefix = "v";
15   };
17   dontBuild = true;
19   # reset_rot is only available in ffmpeg 5.0, see 5bcc61ce87922ecccaaa0bd303a7e195929859a8
20   postPatch = lib.optionalString (lib.versionOlder ffmpeg.version "5.0") ''
21     substituteInPlace 360plugin.lua --replace ":reset_rot=1:" ":"
22   '';
24   installPhase = ''
25     mkdir -p $out/share/mpv/scripts
26     cp -r 360plugin.lua $out/share/mpv/scripts/
27   '';
29   passthru.scriptName = "360plugin.lua";
31   meta = with lib; {
32     description = "Script for mpv to play VR video with optional saving of head tracking data.";
33     homepage = "https://github.com/dfaker/VR-reversal";
34     license = licenses.unlicense;
35     platforms = platforms.all;
36     maintainers = with maintainers; [ schnusch ];
37   };