aboutsummaryrefslogtreecommitdiff
path: root/nix/package.nix
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-06-06 08:10:39 +0200
committerGitHub <noreply@github.com>2023-06-06 08:10:39 +0200
commit7e016c44c14d28001d0e6424e90d0eda95451ab7 (patch)
tree62273d2fa3e3145ff4539f07a13ae74cd2aae593 /nix/package.nix
parente1b37f3cd3d9383dcc70d0d7fac29f8158fbc379 (diff)
parent29e532c096e8c89ba3f0e071fbdecf646f9814ea (diff)
downloadPrismLauncher-7e016c44c14d28001d0e6424e90d0eda95451ab7.tar.gz
PrismLauncher-7e016c44c14d28001d0e6424e90d0eda95451ab7.tar.bz2
PrismLauncher-7e016c44c14d28001d0e6424e90d0eda95451ab7.zip
Merge pull request #1093 from getchoo/use-flake-parts
Refactor Nix Flake
Diffstat (limited to 'nix/package.nix')
-rw-r--r--nix/package.nix65
1 files changed, 65 insertions, 0 deletions
diff --git a/nix/package.nix b/nix/package.nix
new file mode 100644
index 00000000..edc266dc
--- /dev/null
+++ b/nix/package.nix
@@ -0,0 +1,65 @@
+{
+ lib,
+ stdenv,
+ cmake,
+ ninja,
+ jdk17,
+ zlib,
+ qtbase,
+ quazip,
+ extra-cmake-modules,
+ tomlplusplus,
+ cmark,
+ ghc_filesystem,
+ gamemode,
+ msaClientID ? null,
+ gamemodeSupport ? true,
+ self,
+ version,
+ libnbtplusplus,
+}:
+stdenv.mkDerivation rec {
+ pname = "prismlauncher-unwrapped";
+ inherit version;
+
+ src = lib.cleanSource self;
+
+ nativeBuildInputs = [extra-cmake-modules cmake jdk17 ninja];
+ buildInputs =
+ [
+ qtbase
+ zlib
+ quazip
+ ghc_filesystem
+ tomlplusplus
+ cmark
+ ]
+ ++ lib.optional gamemodeSupport gamemode;
+
+ hardeningEnable = ["pie"];
+
+ cmakeFlags =
+ lib.optionals (msaClientID != null) ["-DLauncher_MSA_CLIENT_ID=${msaClientID}"]
+ ++ lib.optionals (lib.versionOlder qtbase.version "6") ["-DLauncher_QT_VERSION_MAJOR=5"];
+
+ postUnpack = ''
+ rm -rf source/libraries/libnbtplusplus
+ ln -s ${libnbtplusplus} source/libraries/libnbtplusplus
+ '';
+
+ dontWrapQtApps = true;
+
+ 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;
+ maintainers = with maintainers; [minion3665 Scrumplex];
+ };
+}