Merge pull request #144367 from mkg20001/odoortl

Changed files
+3 -9
pkgs
applications
finance
+3 -9
pkgs/applications/finance/odoo/default.nix
···
, fetchurl
, python3
, python3Packages
+
, nodePackages
, wkhtmltopdf
}:
with python3Packages;
-
-
/*
-
-
TODO:
-
For languages with right-to-left interface (such as Arabic or Hebrew), the package rtlcss is needed:
-
$ sudo npm install -g rtlcss
-
-
*/
buildPythonApplication rec {
pname = "odoo";
···
buildInputs = [
wkhtmltopdf
+
nodePackages.rtlcss
];
# needs some investigation
doCheck = false;
-
makeWrapperArgs = [ "--prefix" "PATH" ":" "${wkhtmltopdf}/bin" ];
+
makeWrapperArgs = [ "--prefix" "PATH" ":" "${lib.makeBinPath [ wkhtmltopdf nodePackages.rtlcss ]}" ];
propagatedBuildInputs = [
Babel