Files
nix-config/pkgs/tetrio-desktop/tetrio-plus.nix
2024-04-02 10:27:12 +02:00

27 lines
639 B
Nix

{ lib, stdenv, fetchzip }:
stdenv.mkDerivation rec {
pname = "tetrio-plus";
version = "0.25.3";
src = fetchzip {
url = "https://gitlab.com/UniQMG/tetrio-plus/-/jobs/6517560474/artifacts/raw/app.asar.zip";
hash = "sha256-I7UvljloJyKrYpSuQ9V1ySSXKhYeJGDpex/K0R3iuCc=";
};
installPhase = ''
runHook preInstall
install app.asar $out
runHook postInstall
'';
meta = with lib; {
description = "TETR.IO customization toolkit";
homepage = "https://gitlab.com/UniQMG/tetrio-plus";
license = licenses.mit;
maintainers = with maintainers; [ huantian ];
platforms = [ "x86_64-linux" ];
};
}