Skip to content

Commit

Permalink
overrides: add mariadb
Browse files Browse the repository at this point in the history
  • Loading branch information
cheriimoya authored and cpcloud committed Oct 28, 2024
1 parent 0381ed5 commit b98bfb7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions overrides/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1503,6 +1503,13 @@ lib.composeManyExtensions [
}
);

mariadb = prev.mariadb.overridePythonAttrs (
old: {
nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [ pkg-config pkgs.libmysqlclient ];
buildInputs = old.buildInputs or [ ] ++ [ pkgs.libmysqlclient ];
}
);

markdown-it-py = prev.markdown-it-py.overridePythonAttrs (
old: {
propagatedBuildInputs = builtins.filter (i: i.pname != "mdit-py-plugins") old.propagatedBuildInputs;
Expand Down

0 comments on commit b98bfb7

Please sign in to comment.