python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / tetrio-desktop / tetrio-plus.nix
blobe8daf4d0fbe968aa5887eaa796618856de1cc464
1 { lib, stdenv, fetchzip }:
3 stdenv.mkDerivation rec {
4   pname = "tetrio-plus";
5   version = "0.23.13";
7   src = fetchzip {
8     url = "https://gitlab.com/UniQMG/tetrio-plus/uploads/a9647feffc484304ee49c4d3fd4ce718/tetrio-plus_0.23.13_app.asar.zip";
9     sha256 = "sha256-NSOVZjm4hDXH3f0gFG8ijLmdUTyMRFYGhxpwysoYIVg=";
10   };
12   installPhase = ''
13     runHook preInstall
15     install app.asar $out
17     runHook postInstall
18   '';
20   meta = with lib; {
21     description = "TETR.IO customization toolkit";
22     homepage = "https://gitlab.com/UniQMG/tetrio-plus";
23     license = licenses.mit;
24     maintainers = with maintainers; [ huantian ];
25     platforms = [ "x86_64-linux" ];
26   };