37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ lib
|
|
, appimageTools
|
|
, callPackage
|
|
, fetchurl
|
|
, stdenv
|
|
}:
|
|
let
|
|
pname = "immersed-vr";
|
|
version = "9.10";
|
|
|
|
sources = rec {
|
|
x86_64-linux = {
|
|
url = "https://web.archive.org/web/20240210075929/https://static.immersed.com/dl/Immersed-x86_64.AppImage";
|
|
hash = "sha256-Mx8UnV4fZSebj9ah650ZqsL/EIJpM6jl8tYmXJZiJpA=";
|
|
};
|
|
x86_64-darwin = {
|
|
url = "https://web.archive.org/web/20240210075929/https://static.immersed.com/dl/Immersed.dmg";
|
|
hash = "sha256-CR2KylovlS7zerZIEScnadm4+ENNhib5QnS6z5Ihv1Y=";
|
|
};
|
|
aarch64-darwin = x86_64-darwin;
|
|
};
|
|
|
|
src = fetchurl (sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"));
|
|
|
|
meta = with lib; {
|
|
description = "VR coworking platform";
|
|
homepage = "https://immersed.com";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ haruki7049 pandapip1 ];
|
|
platforms = builtins.attrNames sources;
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
};
|
|
|
|
in if stdenv.isDarwin
|
|
then callPackage ./darwin.nix { inherit pname version src meta; }
|
|
else callPackage ./linux.nix { inherit pname version src meta; }
|