f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
75 lines
1.9 KiB
Nix
75 lines
1.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, callPackage
|
|
, makeWrapper
|
|
, makeDesktopItem
|
|
, love
|
|
, luajit
|
|
, libcoldclear ? callPackage ./libcoldclear.nix { }
|
|
, ccloader ? callPackage ./ccloader.nix { inherit libcoldclear luajit; }
|
|
}:
|
|
|
|
let
|
|
pname = "techmino";
|
|
description = "A modern Tetris clone with many features";
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = pname;
|
|
exec = "techmino";
|
|
icon = fetchurl {
|
|
name = "techmino.png";
|
|
url = "https://github.com/26F-Studio/Techmino/assets/9590981/95981af1-f39a-47d9-bd99-a78ab767c08f";
|
|
hash = "sha256-+j+8m2vwaWgHYSFL6urvTcB0vA+PCZ+FYJ22CNXfcSc=";
|
|
};
|
|
comment = description;
|
|
desktopName = "Techmino";
|
|
genericName = "Tetris Clone";
|
|
categories = [ "Game" ];
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit pname;
|
|
version = "0.17.17";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/26F-Studio/Techmino/releases/download/v${version}/Techmino_Bare.love";
|
|
hash = "sha256-ExVdS2QXSRVMlRhrjD/Plo7fhQ3uUBHlwv6y91/S3uA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ love ccloader ];
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/games/lovegames
|
|
cp $src $out/share/games/lovegames/techmino.love
|
|
|
|
mkdir -p $out/bin
|
|
makeWrapper ${love}/bin/love $out/bin/techmino \
|
|
--add-flags $out/share/games/lovegames/techmino.love \
|
|
--suffix LUA_CPATH : ${ccloader}/lib/lua/${luajit.luaversion}/CCLoader.so
|
|
|
|
mkdir -p $out/share/applications
|
|
ln -s ${desktopItem}/share/applications/* $out/share/applications/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
inherit ccloader libcoldclear;
|
|
};
|
|
|
|
meta = with lib; {
|
|
inherit description;
|
|
downloadPage = "https://github.com/26F-Studio/Techmino/releases";
|
|
homepage = "https://github.com/26F-Studio/Techmino/";
|
|
license = licenses.lgpl3;
|
|
mainProgram = "techmino";
|
|
maintainers = with maintainers; [ chayleaf ];
|
|
};
|
|
}
|