13 url = "https://web.archive.org/web/20240909144905if_/https://static.immersed.com/dl/Immersed-x86_64.AppImage";
14 hash = "sha256-/fc/URYJZftZPyVicmZjyvcGPLaHrnlsrERlQFN5E98=";
17 url = "https://web.archive.org/web/20240910022037if_/https://static.immersed.com/dl/Immersed.dmg";
18 hash = "sha256-UkfB151bX0D5k0IBZczh36TWOOYJbBe5e6LIErON214=";
20 aarch64-darwin = x86_64-darwin;
23 src = fetchurl (sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"));
26 description = "VR coworking platform";
27 homepage = "https://immersed.com";
28 license = licenses.unfree;
29 maintainers = with maintainers; [ haruki7049 pandapip1 ];
30 platforms = builtins.attrNames sources;
31 sourceProvenance = with sourceTypes; [ binaryNativeCode ];
34 in if stdenv.hostPlatform.isDarwin
35 then callPackage ./darwin.nix { inherit pname version src meta; }
36 else callPackage ./linux.nix { inherit pname version src meta; }