2022-10-18 17:55:33 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
2023-06-11 21:00:20 +01:00
|
|
|
, cmark
|
2023-04-01 19:55:58 +01:00
|
|
|
, ninja
|
2022-12-19 06:24:18 +00:00
|
|
|
, jdk17
|
2022-10-18 17:55:33 +01:00
|
|
|
, zlib
|
|
|
|
, qtbase
|
|
|
|
, quazip
|
|
|
|
, extra-cmake-modules
|
|
|
|
, tomlplusplus
|
|
|
|
, ghc_filesystem
|
2023-05-04 16:18:52 +01:00
|
|
|
, gamemode
|
2023-05-04 16:24:17 +01:00
|
|
|
, msaClientID ? null
|
2023-03-30 13:53:00 +01:00
|
|
|
, gamemodeSupport ? true
|
2022-10-18 17:55:33 +01:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
libnbtplusplus = fetchFromGitHub {
|
|
|
|
owner = "PrismLauncher";
|
|
|
|
repo = "libnbtplusplus";
|
|
|
|
rev = "2203af7eeb48c45398139b583615134efd8d407f";
|
|
|
|
sha256 = "sha256-TvVOjkUobYJD9itQYueELJX3wmecvEdCbJ0FinW2mL4=";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2023-05-04 16:18:52 +01:00
|
|
|
pname = "prismlauncher-unwrapped";
|
2023-06-16 13:53:00 +01:00
|
|
|
version = "7.1";
|
2022-10-18 17:55:33 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PrismLauncher";
|
|
|
|
repo = "PrismLauncher";
|
|
|
|
rev = version;
|
2023-06-16 13:53:00 +01:00
|
|
|
sha256 = "sha256-ri4oaeJKmvjJapUASPX10nl4JcLPjA3SgTp2EyaEPWg=";
|
2022-10-18 17:55:33 +01:00
|
|
|
};
|
|
|
|
|
2023-05-04 16:18:52 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules cmake jdk17 ninja ];
|
2022-11-19 06:34:38 +00:00
|
|
|
buildInputs = [
|
|
|
|
qtbase
|
|
|
|
zlib
|
|
|
|
quazip
|
|
|
|
ghc_filesystem
|
|
|
|
tomlplusplus
|
2023-06-11 21:00:20 +01:00
|
|
|
cmark
|
2023-05-04 16:18:52 +01:00
|
|
|
] ++ lib.optional gamemodeSupport gamemode;
|
2022-10-18 17:55:33 +01:00
|
|
|
|
2023-05-06 20:59:55 +01:00
|
|
|
hardeningEnable = [ "pie" ];
|
|
|
|
|
2023-05-04 16:24:17 +01:00
|
|
|
cmakeFlags = lib.optionals (msaClientID != null) [ "-DLauncher_MSA_CLIENT_ID=${msaClientID}" ]
|
2023-06-11 21:00:20 +01:00
|
|
|
++ lib.optionals (lib.versionOlder qtbase.version "6") [ "-DLauncher_QT_VERSION_MAJOR=5" ];
|
2022-10-18 17:55:33 +01:00
|
|
|
|
|
|
|
postUnpack = ''
|
|
|
|
rm -rf source/libraries/libnbtplusplus
|
2023-05-04 16:23:31 +01:00
|
|
|
ln -s ${libnbtplusplus} source/libraries/libnbtplusplus
|
2022-10-18 17:55:33 +01:00
|
|
|
'';
|
|
|
|
|
2023-05-04 16:18:52 +01:00
|
|
|
dontWrapQtApps = true;
|
2022-10-18 17:55:33 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://prismlauncher.org/";
|
|
|
|
description = "A free, open source launcher for Minecraft";
|
|
|
|
longDescription = ''
|
|
|
|
Allows you to have multiple, separate instances of Minecraft (each with
|
|
|
|
their own mods, texture packs, saves, etc) and helps you manage them and
|
|
|
|
their associated options with a simple interface.
|
|
|
|
'';
|
|
|
|
platforms = platforms.linux;
|
|
|
|
changelog = "https://github.com/PrismLauncher/PrismLauncher/releases/tag/${version}";
|
|
|
|
license = licenses.gpl3Only;
|
2023-06-11 21:00:20 +01:00
|
|
|
maintainers = with maintainers; [ minion3665 Scrumplex getchoo ];
|
2022-10-18 17:55:33 +01:00
|
|
|
};
|
|
|
|
}
|