fix(nix): add cmark dependency

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-01-07 15:07:53 +01:00 committed by Joshua Goins
parent 22a2b7ac46
commit 3ee0ec7cd0

View File

@ -18,6 +18,7 @@
, extra-cmake-modules
, tomlplusplus
, ghc_filesystem
, cmark
, msaClientID ? ""
, jdks ? [ jdk17 jdk8 ]
@ -41,6 +42,7 @@ stdenv.mkDerivation rec {
quazip
ghc_filesystem
tomlplusplus
cmark
] ++ lib.optional (lib.versionAtLeast qtbase.version "6") qtwayland;
cmakeFlags = lib.optionals (msaClientID != "") [ "-DLauncher_MSA_CLIENT_ID=${msaClientID}" ]