Unverified Commit dd390f87 authored by dish's avatar dish Committed by GitHub
Browse files

immersed: 10.6.0 -> 10.9.0 (#428373)

parents 1e4f63a7 60199cb5
Loading
Loading
Loading
Loading
+35 −27
Original line number Diff line number Diff line
@@ -7,25 +7,25 @@
}:
let
  pname = "immersed";
  version = "10.6.0";
  version = "10.9.0";

  sources = rec {
  sources = lib.mapAttrs (_: fetchurl) (rec {
    x86_64-linux = {
      url = "https://web.archive.org/web/20241229041449/https://static.immersed.com/dl/Immersed-x86_64.AppImage";
      hash = "sha256-u07QpGXEXbp7ApZgerq36x+4Wxsz08YAruIVnZeS0ck=";
      url = "https://web.archive.org/web/20250725134919if_/https://static.immersed.com/dl/Immersed-x86_64.AppImage";
      hash = "sha256-plGcvZRpV+nhQ4FoYiIuLmyOg/SHJ8ZjT4Fh6UyH9W0=";
    };
    aarch64-linux = {
      url = "https://web.archive.org/web/20241229041902/https://static.immersed.com/dl/Immersed-aarch64.AppImage";
      url = "https://web.archive.org/web/20250725135029if_/https://static.immersed.com/dl/Immersed-aarch64.AppImage";
      hash = "sha256-3BokV30y6QRjE94K7JQ6iIuQw1t+h3BKZY+nEFGTVHI=";
    };
    x86_64-darwin = {
      url = "https://web.archive.org/web/20241229041652/https://static.immersed.com/dl/Immersed.dmg";
      hash = "sha256-Sgfm0giVR1dDIFIDpNmGmXLXLRgpMXrVxD/oyPc+Lq0=";
      url = "https://web.archive.org/web/20250725135025if_/https://static.immersed.com/dl/Immersed.dmg";
      hash = "sha256-lmSkatB75Bztm19aCC50qrd/NV+HQX9nBMOTxIguaqI=";
    };
    aarch64-darwin = x86_64-darwin;
  };
  });

  src = fetchurl (sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"));
  src = sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");

  meta = with lib; {
    description = "VR coworking platform";
@@ -40,6 +40,8 @@ let
  };

in

(
  if stdenv.hostPlatform.isDarwin then
    callPackage ./darwin.nix {
      inherit
@@ -58,3 +60,9 @@ else
        meta
        ;
    }
)
// {
  passthru = {
    inherit sources;
  };
}