Merge pull request #221533 from wegank/khoj-darwin

khoj: mark as broken on darwin
This commit is contained in:
Weijia Wang 2023-03-17 16:57:54 +02:00 committed by GitHub
commit 082474b134
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, fetchFromGitHub
, python3
, qt6
@ -43,8 +44,10 @@ python3.pkgs.buildPythonApplication rec {
wrapQtAppsHook
]);
buildInputs = with qt6; [
qtwayland
buildInputs = lib.optionals stdenv.isLinux [
qt6.qtwayland
] ++ lib.optionals stdenv.isDarwin [
qt6.qtbase
];
propagatedBuildInputs = with python3.pkgs; [
@ -106,5 +109,7 @@ python3.pkgs.buildPythonApplication rec {
changelog = "https://github.com/debanjum/khoj/releases/tag/${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ dit7ya ];
# src/tcmalloc.cc:333] Attempt to free invalid pointer
broken = stdenv.isDarwin;
};
}