mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
fix(nix): switch to KF6 ECM
The override can be removed after https://github.com/NixOS/nixpkgs/pull/518987 reaches nixos-unstable See https://github.com/NixOS/nixpkgs/pull/513691 Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
parent
8a7b17f958
commit
8ba5444c6b
1 changed files with 9 additions and 1 deletions
|
|
@ -3,12 +3,12 @@
|
|||
stdenv,
|
||||
cmake,
|
||||
cmark,
|
||||
extra-cmake-modules,
|
||||
gamemode,
|
||||
jdk17,
|
||||
kdePackages,
|
||||
libnbtplusplus,
|
||||
ninja,
|
||||
pkg-config,
|
||||
qrencode,
|
||||
self,
|
||||
stripJavaArchivesHook,
|
||||
|
|
@ -35,6 +35,13 @@ let
|
|||
]
|
||||
else
|
||||
"unknown";
|
||||
|
||||
# Remove once https://github.com/NixOS/nixpkgs/pull/518987 lands
|
||||
extra-cmake-modules = kdePackages.extra-cmake-modules.overrideAttrs (prevAttrs: {
|
||||
meta = prevAttrs.meta // {
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
});
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
|
@ -65,6 +72,7 @@ stdenv.mkDerivation {
|
|||
cmake
|
||||
ninja
|
||||
extra-cmake-modules
|
||||
pkg-config
|
||||
jdk17
|
||||
stripJavaArchivesHook
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue