depot/third_party/nixpkgs/pkgs/by-name/im/immersed-vr/package.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

27 lines
711 B
Nix

{ lib
, appimageTools
, fetchurl
}:
appimageTools.wrapType2 rec {
pname = "immersed-vr";
version = "9.10";
name = "${pname}-${version}";
src = fetchurl {
url = "https://web.archive.org/web/20240210075929/https://static.immersed.com/dl/Immersed-x86_64.AppImage";
hash = "sha256-Mx8UnV4fZSebj9ah650ZqsL/EIJpM6jl8tYmXJZiJpA=";
};
extraInstallCommands = ''
mv $out/bin/{${name},${pname}}
'';
meta = with lib; {
description = "A VR coworking platform";
homepage = "https://immersed.com";
license = licenses.unfree;
maintainers = with maintainers; [ haruki7049 ];
platforms = [ "x86_64-linux" ];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
};
}