Revert "Parity with Upstream towards Nix"
This reverts commit 4de9053c05
.
This commit is contained in:
parent
2129244378
commit
32b45d0fd7
26
flake.nix
26
flake.nix
@ -85,17 +85,23 @@
|
|||||||
|
|
||||||
formatter = forAllSystems (system: nixpkgsFor.${system}.nixfmt-rfc-style);
|
formatter = forAllSystems (system: nixpkgsFor.${system}.nixfmt-rfc-style);
|
||||||
|
|
||||||
overlays.default = final: prev: {
|
overlays.default =
|
||||||
shatteredprism-unwrapped = prev.callPackage ./nix/unwrapped.nix {
|
final: prev:
|
||||||
inherit
|
let
|
||||||
libnbtplusplus
|
version = builtins.substring 0 8 self.lastModifiedDate or "dirty";
|
||||||
nix-filter
|
in
|
||||||
self
|
{
|
||||||
;
|
shatteredprism-unwrapped = prev.callPackage ./nix/unwrapped.nix {
|
||||||
};
|
inherit
|
||||||
|
libnbtplusplus
|
||||||
|
nix-filter
|
||||||
|
self
|
||||||
|
version
|
||||||
|
;
|
||||||
|
};
|
||||||
|
|
||||||
shatteredprism = final.callPackage ./nix/wrapper.nix { };
|
shatteredprism = final.callPackage ./nix/wrapper.nix { };
|
||||||
};
|
};
|
||||||
|
|
||||||
packages = forAllSystems (
|
packages = forAllSystems (
|
||||||
system:
|
system:
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
# Shattered Prism Nix Packaging
|
# Shattered Prism Nix Packaging
|
||||||
|
|
||||||
|
## Installing a stable release (nixpkgs)
|
||||||
|
|
||||||
|
Shattered Prism is packaged in [nixpkgs](https://github.com/NixOS/nixpkgs/) since 22.11.
|
||||||
|
|
||||||
|
See [Package variants](#package-variants) for a list of available packages.
|
||||||
|
|
||||||
## Installing a development release (flake)
|
## Installing a development release (flake)
|
||||||
|
|
||||||
We use [cachix](https://cachix.org/) to cache our development and release builds.
|
We use [cachix](https://cachix.org/) to cache our development and release builds.
|
||||||
@ -199,7 +205,7 @@ nix-env -iA shatteredprism.shatteredprism
|
|||||||
|
|
||||||
## Package variants
|
## Package variants
|
||||||
|
|
||||||
This repository offers the following packages:
|
Both Nixpkgs and this repository offer the following packages:
|
||||||
|
|
||||||
- `shatteredprism` - The preferred build, wrapped with everything necessary to run the launcher and Minecraft
|
- `shatteredprism` - The preferred build, wrapped with everything necessary to run the launcher and Minecraft
|
||||||
- `shatteredprism-unwrapped` - A minimal build that allows for advanced customization of the launcher's runtime environment
|
- `shatteredprism-unwrapped` - A minimal build that allows for advanced customization of the launcher's runtime environment
|
||||||
|
@ -3,13 +3,12 @@
|
|||||||
stdenv,
|
stdenv,
|
||||||
cmake,
|
cmake,
|
||||||
cmark,
|
cmark,
|
||||||
apple-sdk_11,
|
darwin,
|
||||||
extra-cmake-modules,
|
extra-cmake-modules,
|
||||||
gamemode,
|
gamemode,
|
||||||
ghc_filesystem,
|
ghc_filesystem,
|
||||||
jdk17,
|
jdk17,
|
||||||
kdePackages,
|
kdePackages,
|
||||||
libnbtplusplus,
|
|
||||||
ninja,
|
ninja,
|
||||||
nix-filter,
|
nix-filter,
|
||||||
self,
|
self,
|
||||||
@ -18,14 +17,16 @@
|
|||||||
zlib,
|
zlib,
|
||||||
|
|
||||||
msaClientID ? null,
|
msaClientID ? null,
|
||||||
gamemodeSupport ? stdenv.hostPlatform.isLinux,
|
gamemodeSupport ? stdenv.isLinux,
|
||||||
|
version,
|
||||||
|
libnbtplusplus,
|
||||||
}:
|
}:
|
||||||
assert lib.assertMsg (
|
assert lib.assertMsg (
|
||||||
gamemodeSupport -> stdenv.hostPlatform.isLinux
|
gamemodeSupport -> stdenv.isLinux
|
||||||
) "gamemodeSupport is only available on Linux.";
|
) "gamemodeSupport is only available on Linux.";
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "shatteredprism-unwrapped";
|
pname = "shatteredprism-unwrapped";
|
||||||
version = self.shortRev or self.dirtyShortRev or "unknown";
|
inherit version;
|
||||||
|
|
||||||
src = nix-filter.lib {
|
src = nix-filter.lib {
|
||||||
root = self;
|
root = self;
|
||||||
@ -64,23 +65,20 @@ stdenv.mkDerivation {
|
|||||||
tomlplusplus
|
tomlplusplus
|
||||||
zlib
|
zlib
|
||||||
]
|
]
|
||||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ]
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ]
|
||||||
++ lib.optional gamemodeSupport gamemode;
|
++ lib.optional gamemodeSupport gamemode;
|
||||||
|
|
||||||
hardeningEnable = lib.optionals stdenv.hostPlatform.isLinux [ "pie" ];
|
hardeningEnable = lib.optionals stdenv.isLinux [ "pie" ];
|
||||||
|
|
||||||
cmakeFlags =
|
cmakeFlags =
|
||||||
[
|
[ (lib.cmakeFeature "Launcher_BUILD_PLATFORM" "nixpkgs") ]
|
||||||
# downstream branding
|
|
||||||
(lib.cmakeFeature "Launcher_BUILD_PLATFORM" "nixpkgs")
|
|
||||||
]
|
|
||||||
++ lib.optionals (msaClientID != null) [
|
++ lib.optionals (msaClientID != null) [
|
||||||
(lib.cmakeFeature "Launcher_MSA_CLIENT_ID" (toString msaClientID))
|
(lib.cmakeFeature "Launcher_MSA_CLIENT_ID" (toString msaClientID))
|
||||||
]
|
]
|
||||||
++ lib.optionals (lib.versionOlder kdePackages.qtbase.version "6") [
|
++ lib.optionals (lib.versionOlder kdePackages.qtbase.version "6") [
|
||||||
(lib.cmakeFeature "Launcher_QT_VERSION_MAJOR" "5")
|
(lib.cmakeFeature "Launcher_QT_VERSION_MAJOR" "5")
|
||||||
]
|
]
|
||||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
++ lib.optionals stdenv.isDarwin [
|
||||||
# we wrap our binary manually
|
# we wrap our binary manually
|
||||||
(lib.cmakeFeature "INSTALL_BUNDLE" "nodeps")
|
(lib.cmakeFeature "INSTALL_BUNDLE" "nodeps")
|
||||||
# disable built-in updater
|
# disable built-in updater
|
||||||
@ -102,7 +100,7 @@ stdenv.mkDerivation {
|
|||||||
homepage = "https://github.com/lunaislazier/ShatteredPrism";
|
homepage = "https://github.com/lunaislazier/ShatteredPrism";
|
||||||
license = lib.licenses.gpl3Only;
|
license = lib.licenses.gpl3Only;
|
||||||
maintainers = with lib.maintainers; [
|
maintainers = with lib.maintainers; [
|
||||||
evan-goode
|
lunaislazier
|
||||||
];
|
];
|
||||||
mainProgram = "shatteredprism";
|
mainProgram = "shatteredprism";
|
||||||
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
||||||
|
121
nix/wrapper.nix
121
nix/wrapper.nix
@ -1,51 +1,56 @@
|
|||||||
{
|
{
|
||||||
addDriverRunpath,
|
|
||||||
alsa-lib,
|
|
||||||
flite,
|
|
||||||
gamemode,
|
|
||||||
glfw3-minecraft,
|
|
||||||
jdk17,
|
|
||||||
jdk21,
|
|
||||||
jdk8,
|
|
||||||
kdePackages,
|
|
||||||
lib,
|
lib,
|
||||||
libGL,
|
|
||||||
libX11,
|
|
||||||
libXcursor,
|
|
||||||
libXext,
|
|
||||||
libXrandr,
|
|
||||||
libXxf86vm,
|
|
||||||
libjack2,
|
|
||||||
libpulseaudio,
|
|
||||||
libusb1,
|
|
||||||
mesa-demos,
|
|
||||||
openal,
|
|
||||||
pciutils,
|
|
||||||
pipewire,
|
|
||||||
shatteredprism-unwrapped,
|
|
||||||
stdenv,
|
stdenv,
|
||||||
symlinkJoin,
|
symlinkJoin,
|
||||||
|
shatteredprism-unwrapped,
|
||||||
|
addDriverRunpath,
|
||||||
|
flite,
|
||||||
|
gamemode,
|
||||||
|
glfw,
|
||||||
|
glfw-wayland-minecraft,
|
||||||
|
glxinfo,
|
||||||
|
jdk8,
|
||||||
|
jdk17,
|
||||||
|
jdk21,
|
||||||
|
kdePackages,
|
||||||
|
libGL,
|
||||||
|
libpulseaudio,
|
||||||
|
libusb1,
|
||||||
|
makeWrapper,
|
||||||
|
openal,
|
||||||
|
pciutils,
|
||||||
udev,
|
udev,
|
||||||
vulkan-loader,
|
vulkan-loader,
|
||||||
xrandr,
|
xorg,
|
||||||
additionalLibs ? [ ],
|
additionalLibs ? [ ],
|
||||||
additionalPrograms ? [ ],
|
additionalPrograms ? [ ],
|
||||||
controllerSupport ? stdenv.hostPlatform.isLinux,
|
controllerSupport ? stdenv.isLinux,
|
||||||
gamemodeSupport ? stdenv.hostPlatform.isLinux,
|
gamemodeSupport ? stdenv.isLinux,
|
||||||
jdks ? [
|
jdks ? [
|
||||||
jdk21
|
jdk21
|
||||||
jdk17
|
jdk17
|
||||||
jdk8
|
jdk8
|
||||||
],
|
],
|
||||||
msaClientID ? null,
|
msaClientID ? null,
|
||||||
textToSpeechSupport ? stdenv.hostPlatform.isLinux,
|
textToSpeechSupport ? stdenv.isLinux,
|
||||||
|
# Adds `glfw-wayland-minecraft` to `LD_LIBRARY_PATH`
|
||||||
|
# when launched on wayland, allowing for the game to be run natively.
|
||||||
|
# Make sure to enable "Use system installation of GLFW" in instance settings
|
||||||
|
# for this to take effect
|
||||||
|
#
|
||||||
|
# Warning: This build of glfw may be unstable, and the launcher
|
||||||
|
# itself can take slightly longer to start
|
||||||
|
withWaylandGLFW ? false,
|
||||||
}:
|
}:
|
||||||
assert lib.assertMsg (
|
assert lib.assertMsg (
|
||||||
controllerSupport -> stdenv.hostPlatform.isLinux
|
controllerSupport -> stdenv.isLinux
|
||||||
) "controllerSupport only has an effect on Linux.";
|
) "controllerSupport only has an effect on Linux.";
|
||||||
assert lib.assertMsg (
|
assert lib.assertMsg (
|
||||||
textToSpeechSupport -> stdenv.hostPlatform.isLinux
|
textToSpeechSupport -> stdenv.isLinux
|
||||||
) "textToSpeechSupport only has an effect on Linux.";
|
) "textToSpeechSupport only has an effect on Linux.";
|
||||||
|
assert lib.assertMsg (
|
||||||
|
withWaylandGLFW -> stdenv.isLinux
|
||||||
|
) "withWaylandGLFW is only available on Linux.";
|
||||||
let
|
let
|
||||||
shatteredprism' = shatteredprism-unwrapped.override { inherit msaClientID gamemodeSupport; };
|
shatteredprism' = shatteredprism-unwrapped.override { inherit msaClientID gamemodeSupport; };
|
||||||
in
|
in
|
||||||
@ -55,7 +60,13 @@ symlinkJoin {
|
|||||||
|
|
||||||
paths = [ shatteredprism' ];
|
paths = [ shatteredprism' ];
|
||||||
|
|
||||||
nativeBuildInputs = [ kdePackages.wrapQtAppsHook ];
|
nativeBuildInputs =
|
||||||
|
[
|
||||||
|
kdePackages.wrapQtAppsHook
|
||||||
|
]
|
||||||
|
# purposefully using a shell wrapper here for variable expansion
|
||||||
|
# see https://github.com/NixOS/nixpkgs/issues/172583
|
||||||
|
++ lib.optional withWaylandGLFW makeWrapper;
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[
|
[
|
||||||
@ -63,18 +74,30 @@ symlinkJoin {
|
|||||||
kdePackages.qtsvg
|
kdePackages.qtsvg
|
||||||
]
|
]
|
||||||
++ lib.optional (
|
++ lib.optional (
|
||||||
lib.versionAtLeast kdePackages.qtbase.version "6" && stdenv.hostPlatform.isLinux
|
lib.versionAtLeast kdePackages.qtbase.version "6" && stdenv.isLinux
|
||||||
) kdePackages.qtwayland;
|
) kdePackages.qtwayland;
|
||||||
|
|
||||||
postBuild = ''
|
env = {
|
||||||
wrapQtAppsHook
|
waylandPreExec = lib.optionalString withWaylandGLFW ''
|
||||||
'';
|
if [ -n "$WAYLAND_DISPLAY" ]; then
|
||||||
|
export LD_LIBRARY_PATH=${lib.getLib glfw-wayland-minecraft}/lib:"$LD_LIBRARY_PATH"
|
||||||
|
fi
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
postBuild =
|
||||||
|
lib.optionalString withWaylandGLFW ''
|
||||||
|
qtWrapperArgs+=(--run "$waylandPreExec")
|
||||||
|
''
|
||||||
|
+ ''
|
||||||
|
wrapQtAppsHook
|
||||||
|
'';
|
||||||
|
|
||||||
qtWrapperArgs =
|
qtWrapperArgs =
|
||||||
let
|
let
|
||||||
runtimeLibs =
|
runtimeLibs =
|
||||||
[
|
[
|
||||||
(lib.getLib stdenv.cc.cc)
|
stdenv.cc.cc.lib
|
||||||
## native versions
|
## native versions
|
||||||
glfw3-minecraft
|
glfw3-minecraft
|
||||||
openal
|
openal
|
||||||
@ -83,19 +106,19 @@ symlinkJoin {
|
|||||||
alsa-lib
|
alsa-lib
|
||||||
libjack2
|
libjack2
|
||||||
libpulseaudio
|
libpulseaudio
|
||||||
pipewire
|
|
||||||
|
|
||||||
## glfw
|
|
||||||
libGL
|
libGL
|
||||||
libX11
|
openal
|
||||||
libXcursor
|
stdenv.cc.cc.lib
|
||||||
libXext
|
|
||||||
libXrandr
|
vulkan-loader # VulkanMod's lwjgl
|
||||||
libXxf86vm
|
|
||||||
|
|
||||||
udev # oshi
|
udev # oshi
|
||||||
|
|
||||||
vulkan-loader # VulkanMod's lwjgl
|
xorg.libX11
|
||||||
|
xorg.libXext
|
||||||
|
xorg.libXcursor
|
||||||
|
xorg.libXrandr
|
||||||
|
xorg.libXxf86vm
|
||||||
]
|
]
|
||||||
++ lib.optional textToSpeechSupport flite
|
++ lib.optional textToSpeechSupport flite
|
||||||
++ lib.optional gamemodeSupport gamemode.lib
|
++ lib.optional gamemodeSupport gamemode.lib
|
||||||
@ -103,14 +126,16 @@ symlinkJoin {
|
|||||||
++ additionalLibs;
|
++ additionalLibs;
|
||||||
|
|
||||||
runtimePrograms = [
|
runtimePrograms = [
|
||||||
mesa-demos
|
glxinfo
|
||||||
pciutils # need lspci
|
pciutils # need lspci
|
||||||
xrandr # needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128
|
xorg.xrandr # needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128
|
||||||
] ++ additionalPrograms;
|
] ++ additionalPrograms;
|
||||||
|
|
||||||
in
|
in
|
||||||
[ "--prefix SHATTEREDPRISM_JAVA_PATHS : ${lib.makeSearchPath "bin/java" jdks}" ]
|
[
|
||||||
++ lib.optionals stdenv.hostPlatform.isLinux [
|
"--prefix SHATTEREDPRISM_JAVA_PATHS : ${lib.makeSearchPath "bin/java" jdks}"
|
||||||
|
]
|
||||||
|
++ lib.optionals stdenv.isLinux [
|
||||||
"--set LD_LIBRARY_PATH ${addDriverRunpath.driverLink}/lib:${lib.makeLibraryPath runtimeLibs}"
|
"--set LD_LIBRARY_PATH ${addDriverRunpath.driverLink}/lib:${lib.makeLibraryPath runtimeLibs}"
|
||||||
"--prefix PATH : ${lib.makeBinPath runtimePrograms}"
|
"--prefix PATH : ${lib.makeBinPath runtimePrograms}"
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user