odoo: add rtlcss depenency

main
Maciej Krüger 3 years ago
parent 44697d1e78
commit 4631d5e06e
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F
  1. 12
      pkgs/applications/finance/odoo/default.nix

@ -3,19 +3,12 @@
, 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";
@ -40,12 +33,13 @@ buildPythonApplication rec {
buildInputs = [
wkhtmltopdf
nodePackages.rtlcss
];
# needs some investigation
doCheck = false;
makeWrapperArgs = [ "--prefix" "PATH" ":" "${wkhtmltopdf}/bin" ];
makeWrapperArgs = [ "--prefix" "PATH" ":" "${lib.makeBinPath [ wkhtmltopdf nodePackages.rtlcss ]}" ];
propagatedBuildInputs = [
Babel

Loading…
Cancel
Save