unityhub: init at 2.2.2 (#65391)

This commit is contained in:
Mikołaj Gałkowski 2019-12-28 19:16:18 +01:00 committed by Dmitry Kalinkin
parent 59b0ab21e7
commit 650a6354bb
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ stdenv, fetchurl, appimageTools, gsettings-desktop-schemas, gtk3 }:
let
pname = "unityhub";
version = "2.2.2";
in
appimageTools.wrapType2 rec {
name = "${pname}-${version}";
extraPkgs = (pkgs: with pkgs; with xorg; [ gtk2 gdk_pixbuf glib libGL libGLU nss nspr
alsaLib cups gnome2.GConf libcap fontconfig freetype pango
cairo dbus dbus-glib libdbusmenu libdbusmenu-gtk2 expat zlib libpng12 udev tbb
libpqxx gtk3 libsecret lsb-release openssl nodejs ncurses5
libX11 libXcursor libXdamage libXfixes libXrender libXi
libXcomposite libXext libXrandr libXtst libSM libICE libxcb ]);
profile = ''
export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
'';
src = fetchurl {
url = "https://public-cdn.cloud.unity3d.com/hub/prod/UnityHub.AppImage";
sha256 = "1rx7ih94ig3pd1yx1d3fpx7zpixq3j5birkpnzkh778qqsdrg0nf";
};
meta = with stdenv.lib; {
homepage = https://unity3d.com/;
description = "Game development tool";
longDescription = ''
Popular development platform for creating 2D and 3D multiplatform games
and interactive experiences.
'';
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ tesq0 ];
};
}

View file

@ -25267,6 +25267,8 @@ in
inherit (gnome2) GConf;
};
unityhub = callPackage ../development/tools/unityhub { };
urbit = callPackage ../misc/urbit { };
utf8proc = callPackage ../development/libraries/utf8proc { };