jetbrains.jcef: replace assert with meta.platforms

An assert can't be properly caught by CI, but `meta.platforms` can.
This commit is contained in:
Wolfgang Walther
2025-07-21 18:12:53 +02:00
parent 953761feed
commit bb4f984b8e
@@ -46,9 +46,6 @@
thrift,
}:
assert !stdenv.hostPlatform.isDarwin;
# I can't test darwin
let
rpath = lib.makeLibraryPath [
glib
@@ -306,5 +303,9 @@ stdenv.mkDerivation rec {
description = "Jetbrains' fork of JCEF";
license = lib.licenses.bsd3;
homepage = "https://github.com/JetBrains/JCEF";
platforms = [
"aarch64-linux"
"x86_64-linux"
];
};
}